Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- <?php
-
- namespace OrpheusNET\Logchecker\Exception;
-
- /**
- * Thrown when a file was not found.
- */
- class FileNotFoundException extends \RuntimeException {
- /**
- * @param string $path The path to the file that was not found
- */
- public function __construct(string $path) {
- parent::__construct("The file '{$path}' does not exist");
- }
- }
|