Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

18 řádky
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. }