first commit
This commit is contained in:
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Laminas\Diactoros\Exception;
|
||||
|
||||
use RuntimeException;
|
||||
use Throwable;
|
||||
|
||||
class InvalidStreamPointerPositionException extends RuntimeException implements ExceptionInterface
|
||||
{
|
||||
/** {@inheritDoc} */
|
||||
public function __construct(
|
||||
string $message = 'Invalid pointer position',
|
||||
int $code = 0,
|
||||
?Throwable $previous = null
|
||||
) {
|
||||
parent::__construct($message, $code, $previous);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user