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

22 行
350B

  1. <?php
  2. namespace App\Exceptions;
  3. use Exception;
  4. class TempFileNotExistsException extends Exception
  5. {
  6. private $filepath = "";
  7. public function setFilepath(string $filepath): static
  8. {
  9. $this->filepath = $filepath;
  10. return $this;
  11. }
  12. public function getFilepath(): string
  13. {
  14. return $this->filepath;
  15. }
  16. }