Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

18 lines
299B

  1. <?php
  2. namespace App\Exceptions;
  3. use Exception;
  4. class ParamException extends Exception
  5. {
  6. public string $target;
  7. public static function throw(string $target, $message)
  8. {
  9. $exception = new static($message);
  10. $exception->target = $target;
  11. throw $exception;
  12. }
  13. }