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.

15 regels
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. }