/home/techb158/ileadtechnology.com/SSM/vendor/symfony/http-kernel/Exception
NameSizeModeActions
AccessDeniedHttpException.php8580644editdlrm
BadRequestHttpException.php8030644editdlrm
ConflictHttpException.php8010644editdlrm
ControllerDoesNotReturnResponseException.php23340644editdlrm
GoneHttpException.php7970644editdlrm
HttpException.php11330644editdlrm
HttpExceptionInterface.php7100644editdlrm
LengthRequiredHttpException.php8070644editdlrm
MethodNotAllowedHttpException.php9540644editdlrm
NotAcceptableHttpException.php8060644editdlrm
NotFoundHttpException.php8080644editdlrm
PreconditionFailedHttpException.php8110644editdlrm
PreconditionRequiredHttpException.php8590644editdlrm
ServiceUnavailableHttpException.php10380644editdlrm
TooManyRequestsHttpException.php10810644editdlrm
UnauthorizedHttpException.php9500644editdlrm
UnprocessableEntityHttpException.php8210644editdlrm
UnsupportedMediaTypeHttpException.php8130644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/symfony/http-kernel/Exception/GoneHttpException.php (797B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\HttpKernel\Exception; /** * @author Ben Ramsey */ class GoneHttpException extends HttpException { /** * @param string $message The internal exception message * @param \Throwable $previous The previous exception * @param int $code The internal exception code */ public function __construct(string $message = null, \Throwable $previous = null, int $code = 0, array $headers = []) { parent::__construct(410, $message, $previous, $headers, $code); } }