Class LoginException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- net.sf.basedb.core.authentication.AuthenticationException
-
- net.sf.basedb.core.authentication.LoginException
-
- All Implemented Interfaces:
Serializable
public class LoginException extends AuthenticationException
This exception can be thrown when an error occurs during the authentication, but it is not known if the username or password is causing the problem.- Since:
- 3.0
- Author:
- Nicklas
- See Also:
- Serialized Form
- Last modified
- $Date: 2011-10-24 13:44:02 +0200 (må, 24 okt 2011) $
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description LoginException(String msg)
Create a newLoginException
objectLoginException(String msg, Throwable cause)
Create a newLoginException
object
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
LoginException
public LoginException(String msg)
Create a newLoginException
object- Parameters:
msg
- The error message
-
-