InvalidMethodRequestException.php 321 B

123456789101112
  1. <?php
  2. namespace Gogs\API\Request\Exception {
  3. /**
  4. * Thrown whenever a class that inherits the base-class
  5. * is used wrong (e.g tries to create on a loaded object)
  6. *
  7. * @author Joachim M. Giaever (joachim[]giaever.org)
  8. */
  9. class InvalidMethodRequestException extends \Exception {};
  10. }
  11. ?>