<?phpdeclare(strict_types=1);namespaceZipStream\Exception;useZipStream\Exception;/** * This Exception gets invoked if `fread` fails on a stream. */classStreamNotReadableExceptionextendsException{/** * Constructor of the Exception * * @param string $fileName - The name of the file which the stream belongs to. */publicfunction__construct(string$fileName){parent::__construct("The stream for $fileName could not be read.");}}