/opt/alt/php55/usr/share/pear/Symfony/Component/HttpKernel/Exception
NameSizeModeActions
AccessDeniedHttpException.php8850644editdlrm
BadRequestHttpException.php8310644editdlrm
ConflictHttpException.php8270644editdlrm
FatalErrorException.php6390644editdlrm
FlattenException.php7340644editdlrm
GoneHttpException.php8190644editdlrm
HttpException.php9290644editdlrm
HttpExceptionInterface.php6950644editdlrm
LengthRequiredHttpException.php8390644editdlrm
MethodNotAllowedHttpException.php9940644editdlrm
NotAcceptableHttpException.php8370644editdlrm
NotFoundHttpException.php8310644editdlrm
PreconditionFailedHttpException.php8470644editdlrm
PreconditionRequiredHttpException.php8940644editdlrm
ServiceUnavailableHttpException.php11120644editdlrm
TooManyRequestsHttpException.php11610644editdlrm
UnauthorizedHttpException.php9790644editdlrm
UnsupportedMediaTypeHttpException.php8510644editdlrm
Edit: /opt/alt/php55/usr/share/pear/Symfony/Component/HttpKernel/Exception/GoneHttpException.php (819B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\HttpKernel\Exception; /** * GoneHttpException. * * @author Ben Ramsey */ class GoneHttpException extends HttpException { /** * Constructor. * * @param string $message The internal exception message * @param \Exception $previous The previous exception * @param integer $code The internal exception code */ public function __construct($message = null, \Exception $previous = null, $code = 0) { parent::__construct(410, $message, $previous, array(), $code); } }