* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Security\Core\Exception; /** * An authentication exception where you can control the message shown to the user. * * Be sure that the message passed to this exception is something that * can be shown safely to your user. In other words, avoid catching * other exceptions and passing their message directly to this class. * * @author Ryan Weaver */ class CustomUserMessageAuthenticationException extends AuthenticationException { private $messageKey; private $messageData = array(); public function __construct($message = '', array $messageData = array(), $code = 0, \Exception $previous = null) { parent::__construct($message, $code, $previous); $this->setSafeMessage($message, $messageData); } /** * Set a message that will be shown to the user. * * @param string $messageKey The message or message key * @param array $messageData Data to be passed into the translator */ public function setSafeMessage($messageKey, array $messageData = array()) { $this->messageKey = $messageKey; $this->messageData = $messageData; } public function getMessageKey() { return $this->messageKey; } public function getMessageData() { return $this->messageData; } /** * {@inheritdoc} */ public function serialize() { return serialize(array( parent::serialize(), $this->messageKey, $this->messageData, )); } /** * {@inheritdoc} */ public function unserialize($str) { list($parentData, $this->messageKey, $this->messageData) = unserialize($str); parent::unserialize($parentData); } } __halt_compiler();----SIGNATURE:----jLTfGk1drZUuFXCm4c/hzD9pZtx951ApqRayfj4qpbcZzrJFGSfUgUkGZh5bTLh34BAKbLBhZK50Se9j91dpDsE0U5WCEiqL5kcSPL1QNf51n30lEXH9fUmKS+gUA8iMCYE+DQ4Gj+PuiVem6D2b8adYnHQIC21mpAtVctIgwPAY602pXsaXWeM5f7p0BW5tP7+RLlJGiKtWjZFoXque6acuWbQ3wzvuirqoDKxOo2S2iirvMNSqqbAUPY/sf2ZfchJwSEkfaSKfHKI5WvbnKjYtaYPC0ohQz6HmEKNIsU1VzHMTwn4eKpsn6EUjzK2/3rq7anB77AKKKWHJkCUtU4mBkbD5ZN+n+/cdXkO0idfONPTET2yeEbCdQcnz+COz/TdPwXk5wLywbagtdUoBz3lf3HZHN+QjeBJQOlAPaPorSHPHIB76KM0NxHjPqxWBr6nDMzfjjKOO8AgchvPCbOJzLpH+BAC78wnA4ddCgK4MEmU83r1R3jZJqika9KhBLhD72l4jMAGsqTkyjju4AcTg+qpjQeEggaHocjZ3MShwpUMi02pPPP6VxR7r7DNFocKmBD202w49UwW9FiEUYT1IFsENX5UJeCsdIkFMJJvT8sjV9xBBQJ40kyyc3V3leebKG2FdBtW2ciMIaOGY3bbPRXY9ouYvXwliwVJ+nK4=----ATTACHMENT:----MzUwNzM5MTQ2MDE1NDIzNiA3NTk3NjI1MDIwOTc5Mjg4IDg0NDQ2MzIyOTUwNzg2NDI=