class CustomUserMessageAuthenticationException extends AuthenticationException
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.
Methods
TokenInterface | getToken() Get the token. | from AuthenticationException |
setToken(TokenInterface $token) Set the token. | from AuthenticationException | |
serialize() | ||
unserialize($str) | ||
string | getMessageKey() Message key to be used by the translation component. | |
array | getMessageData() Message data to be used by the translation component. | |
__construct($message = '', array $messageData = array(), $code, Exception $previous = null) | ||
setSafeMessage(string $messageKey, array $messageData = array()) Set a message that will be shown to the user. |
Details
TokenInterface getToken()
Get the token.
setToken(TokenInterface $token)
Set the token.
serialize()
unserialize($str)
string getMessageKey()
Message key to be used by the translation component.
array getMessageData()
Message data to be used by the translation component.
__construct($message = '', array $messageData = array(), $code, Exception $previous = null)
setSafeMessage(string $messageKey, array $messageData = array())
Set a message that will be shown to the user.
Please login to continue.