Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

15 řádky
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. }