選択できるのは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. }