SearchParamException.php 247 B

12345678910
  1. <?php
  2. namespace Gogs\API\Request\Exception {
  3. /**
  4. * Thrown when needed parameters for a search is missing.
  5. *
  6. * @author Joachim M. Giaever (joachim[]giaever.org)
  7. */
  8. class SearchParamException extends \Exception {};
  9. }
  10. ?>