* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Debug\Exception; /** * Error Exception with Variable Context. * * @author Christian Sciberras * * @deprecated since version 3.3. Instead, \ErrorException will be used directly in 4.0. */ class ContextErrorException extends \ErrorException { private $context = array(); public function __construct($message, $code, $severity, $filename, $lineno, $context = array()) { parent::__construct($message, $code, $severity, $filename, $lineno); $this->context = $context; } /** * @return array Array of variables that existed when the exception occurred */ public function getContext() { @trigger_error(sprintf('The %s class is deprecated since Symfony 3.3 and will be removed in 4.0.', __CLASS__), E_USER_DEPRECATED); return $this->context; } } __halt_compiler();----SIGNATURE:----NOiDeC/jGblcqX4g7e1vWOMZYVR0fhkMdDLt4e9nm7bx9l2vmbXG44pH0ocIKuzrKLC9wSGK2RClxYgotbiAsdbj8LhYHp3h8uGIw6f5TiQxnmD9z5AMmNZxMZJEk3jnetC1/McfoGjWGh1FQeSH82lW8XGcMRwVGeZ5ocKMSYpnxHOFg3hPI2uhmyQydb6sKTz+l+5JL0lDwJZRHTYMMrhKYPl/78yDtmWUmjvMvBrwUr5v/fKjfavjZdfUUj2w8YiF7OGYWfFvYbOGew9XyWSZrm+kALuX4OOgcJAwjTBmWpUfddaN6kbPZEZca1lpY+Hh7dj0smzWD7Ld+etS44yULziQsfNLR39DURscTL/6BXNqQZKZaNqTZQQgMxdkanua39B/vCCPbi5qMIkn4go3vTWeceTIVjSVLfpChCuht45Sler+P9ZAh2Tk/3t7HQTqS3KlrmPw+SqEPWRML8GqkLQkDLl+IP/bHHK7y6CynbegA5cfyAjb2mzS/Bm9wlJilks+Th8AwD3SFrCzGiTrYnRCU2/dglVLrr3Ard7wFuEkjcwcQLQG9kCaMwmQCEraZ0JUnHHWSg4mPOY/GrEdNcpCefx5bKnj59fy94vQ40t/19mk9gmUwcACWGxfaL27rGI7Soee+/veKPDnVpo6XkFs1kxc1lKFskoRQQI=----ATTACHMENT:----NzY4NTcwNTEzMTQ5NTA3MyA0MjMxNDQwNTAxNDM0NTYgODA1OTAwODg2MjU3MDUzNQ==