4
0

BadRequestException.php 223 B

12345678910
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * An exception raised when user input is invalid.
  5. * The front controller turns it into a HTTP 400 Bad Request error page.
  6. */
  7. class Minz_BadRequestException extends Minz_Exception {
  8. }