25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
356 B

  1. <?php
  2. namespace OrpheusNET\Logchecker\Exception;
  3. /**
  4. * Thrown when a file was not found.
  5. */
  6. class FileNotFoundException extends \RuntimeException {
  7. /**
  8. * @param string $path The path to the file that was not found
  9. */
  10. public function __construct(string $path) {
  11. parent::__construct("The file '{$path}' does not exist");
  12. }
  13. }