領収証発行サービス
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
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. }