<?phpdeclare(strict_types=1);namespaceZipStream\Exception;useZipStream\Exception;/** * This Exception gets invoked if a file wasn't found */classFileNotReadableExceptionextendsException{/** * Constructor of the Exception * * @param String $path - The path which wasn't found */publicfunction__construct(string$path){parent::__construct("The file with the path $path isn't readable.");}}