RequestErrorException.php 265 B

1234567891011
  1. <?php
  2. namespace Gogs\API\Request\Exception {
  3. /**
  4. * Typically thrown when needed data to build the query
  5. * is missing.
  6. *
  7. * @author Joachim M. Giaever (joachim[]giaever.org)
  8. */
  9. class RequestErrorException extends \Exception {};
  10. }
  11. ?>