1<?php 2 3namespace Elastica\Exception; 4 5use Throwable; 6 7class RequestEntityTooLargeException extends \RuntimeException implements ExceptionInterface 8{ 9 public function __construct(?Throwable $previous = null) 10 { 11 parent::__construct('Request entity is too large.', 0, $previous); 12 } 13} 14