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
9 declare(strict_types=1);
11 namespace Laminas\Diactoros\Exception;
16 class UploadedFileAlreadyMovedException extends RuntimeException implements ExceptionInterface
18 public function __construct(
19 string $message = 'Cannot retrieve stream after it has already moved',
21 Throwable $previous = null
23 parent::__construct($message, $code, $previous);