summaryrefslogtreecommitdiffstats
path: root/Core/Exception/UsernameNotFoundException.php
diff options
context:
space:
mode:
Diffstat (limited to 'Core/Exception/UsernameNotFoundException.php')
-rw-r--r--Core/Exception/UsernameNotFoundException.php14
1 files changed, 11 insertions, 3 deletions
diff --git a/Core/Exception/UsernameNotFoundException.php b/Core/Exception/UsernameNotFoundException.php
index f656bac..6979389 100644
--- a/Core/Exception/UsernameNotFoundException.php
+++ b/Core/Exception/UsernameNotFoundException.php
@@ -22,7 +22,7 @@ class UsernameNotFoundException extends AuthenticationException
private $username;
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getMessageKey()
{
@@ -50,7 +50,7 @@ class UsernameNotFoundException extends AuthenticationException
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function serialize()
{
@@ -61,7 +61,7 @@ class UsernameNotFoundException extends AuthenticationException
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function unserialize($str)
{
@@ -69,4 +69,12 @@ class UsernameNotFoundException extends AuthenticationException
parent::unserialize($parentData);
}
+
+ /**
+ * {@inheritdoc}
+ */
+ public function getMessageData()
+ {
+ return array('{{ username }}' => $this->username);
+ }
}