TaskSystem/vendor/maennchen/zipstream-php/src/Exception/StreamNotReadableException.php

22 lines
353 B
PHP
Raw Normal View History

2023-07-15 10:16:32 +08:00
<?php
declare(strict_types=1);
namespace ZipStream\Exception;
use ZipStream\Exception;
/**
2023-07-17 09:56:51 +08:00
* This Exception gets invoked if a stream can't be read.
2023-07-15 10:16:32 +08:00
*/
class StreamNotReadableException extends Exception
{
/**
2023-07-17 09:56:51 +08:00
* @internal
2023-07-15 10:16:32 +08:00
*/
2023-07-17 09:56:51 +08:00
public function __construct()
2023-07-15 10:16:32 +08:00
{
2023-07-17 09:56:51 +08:00
parent::__construct('The stream could not be read.');
2023-07-15 10:16:32 +08:00
}
}