5782588c2eba92ce481ba23d302db14ef1e4c956
[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 use Throwable;
15
16 class InvalidStreamPointerPositionException extends RuntimeException implements ExceptionInterface
17 {
18 public function __construct(
19 string $message = 'Invalid pointer position',
20 $code = 0,
21 Throwable $previous = null
22 ) {
23 parent::__construct($message, $code, $previous);
24 }
25 }