* @return
*/
public User findUser(String username) throws ExpiredPasswordException
{
if ("expired".equals(username))
throw new ExpiredPasswordException(
"Testing ExpiredPasswordException ...");
if ("arithmetic".equals(username))
throw new ArithmeticException();
return super.findUser(username);
}