Package net.sf.basedb.core
Class LoginException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- net.sf.basedb.core.BaseException
-
- net.sf.basedb.core.LoginException
-
- All Implemented Interfaces:
Serializable
public class LoginException extends BaseException
Exceptions of this type are thrown when the BASE server uses an external authentication plug-in and it is not clear if the login or password is causing the failure.- Since:
- 3.0
- Author:
- Nicklas
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description LoginException(String message)
Create a newLoginException
object with the specifiedmessage
LoginException(String message, Throwable cause)
Create a newLoginException
object with the specifiedmessage
-
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 message)
Create a newLoginException
object with the specifiedmessage
- Parameters:
message
- The message to throw with the exception
-
-