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ů.
|
- <?php
-
- namespace App\Exceptions;
-
- use Exception;
-
- class ParamException extends Exception
- {
- public string $target;
-
- public static function throw(string $target, $message)
- {
- $exception = new static($message);
- $exception->target = $target;
- throw $exception;
- }
- }
|