/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/FlattenException.php (734B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\HttpKernel\Exception; use Symfony\Component\Debug\Exception\FlattenException as DebugFlattenException; /** * FlattenException wraps a PHP Exception to be able to serialize it. * * Basically, this class removes all objects from the trace. * * @author Fabien Potencier * * @deprecated Deprecated in 2.3, to be removed in 3.0. Use the same class from the Debug component instead. */ class FlattenException extends DebugFlattenException { }