Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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