* * 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; use Symfony\Component\Security\Core\Authentication\Token\TokenInterface; /** * AuthenticationException is the base class for all authentication exceptions. * * @author Fabien Potencier * @author Alexander */ class AuthenticationException extends \RuntimeException implements \Serializable { private $token; /** * Get the token. * * @return TokenInterface */ public function getToken() { return $this->token; } public function setToken(TokenInterface $token) { $this->token = $token; } public function serialize() { return serialize(array( $this->token, $this->code, $this->message, $this->file, $this->line, )); } public function unserialize($str) { list( $this->token, $this->code, $this->message, $this->file, $this->line ) = unserialize($str); } /** * Message key to be used by the translation component. * * @return string */ public function getMessageKey() { return 'An authentication exception occurred.'; } /** * Message data to be used by the translation component. * * @return array */ public function getMessageData() { return array(); } } __halt_compiler();----SIGNATURE:----TZ5UAvrAHIDf6I1VvEE5kB58admFwYeJ5F8RYcvZGxe33873KIxHjVM4+SUWdbrMzv5g9XXMKCROmEH3HZ1PoO5rhZ/7EJrc784nhPz+phzr4kRovouZHmBjmAp40t39NBU56FRMl//tP1c7hodKv5wil5BNNkvVCpNv3zyhmPeADbhFqP3a0xxRqIeTeqfEl4xYmrsbyJWXZyBFcjbStNAb+dTVLBeVyStBJYN2Ybwi0gaicj8X8uNd4linYECY11Dd/VZRaRnev4e+SXzqLQ4b+jPlU5WdgpDFEUkz+HvNi0eGZ0Vz4Ca5ghqp8doAhiqNBAK8Si7LYi7dIoJAlFiZgtCa5Ytf1/0kZkOnC+/TUu/gsSTopc6vdsgbCq0wYG389DsOlUhXGGzxJXrR7ygaaszqTkKoGUw4kXyOCfivedSKEZOgoNvyDJPAfG+UmcXmlaD1dI+DBOKr1/Lu1eOI3TRaKi2zX1652WsxxLHKA7PpI3JzGpAsmlENs3Xa//lfngcedBcpkOGunAXf+Xd17aaOcAI7gfOBKe7ImXT7p//jfzai23nFmh+88C+kNqPgBiM7bjJAccEiAbzDkErKHArM8UfBWOo5UszgTSw0/IUlSCv+oI5R5rmcBEOhKMfSDifuJ13cErJdEYWpajeGvEJiv9M6NTJQIIGCVsw=----ATTACHMENT:----MTk2NTM3MDEzNjAxMzczNiAxNjAzMDExODEwOTEzMjkyIDYxMzUxMTYxOTMzOTg4Nw==