Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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