c98787d4387ac73c2b07e7ec1f9121288d032244
[GitHub/WoltLab/WCF.git] /
1 <?php
2
3 /**
4 * @see https://github.com/laminas/laminas-diactoros for the canonical source repository
5 * @copyright https://github.com/laminas/laminas-diactoros/blob/master/COPYRIGHT.md
6 * @license https://github.com/laminas/laminas-diactoros/blob/master/LICENSE.md New BSD License
7 */
8
9 declare(strict_types=1);
10
11 namespace Laminas\Diactoros\Exception;
12
13 use RuntimeException;
14
15 class UnreadableStreamException extends RuntimeException implements ExceptionInterface
16 {
17 public static function dueToConfiguration() : self
18 {
19 return new self('Stream is not readable');
20 }
21
22 public static function dueToMissingResource() : self
23 {
24 return new self('No resource available; cannot read');
25 }
26
27 public static function dueToPhpError() : self
28 {
29 return new self('Error reading stream');
30 }
31
32 public static function forCallbackStream() : self
33 {
34 return new self('Callback streams cannot read');
35 }
36 }