您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

18 行
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. }