領収証発行サービス
選択できるのは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. }