Class AuthenticatorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.ofbiz.base.util.GeneralException
org.apache.ofbiz.common.authentication.api.AuthenticatorException
- All Implemented Interfaces:
Serializable
AuthenticatorException
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates newGeneralException
without detail message.Constructs anGeneralException
with the specified detail message.AuthenticatorException
(String msg, Throwable nested) Constructs anGeneralException
with the specified detail message and nested Exception.AuthenticatorException
(String msg, List<String> messages) Constructs anGeneralException
with the specified detail message, list and nested Exception.AuthenticatorException
(String msg, List<String> messages, Throwable nested) Constructs anGeneralException
with the specified detail message, list and nested Exception.AuthenticatorException
(Throwable nested) Constructs anGeneralException
with the specified detail message and nested Exception.AuthenticatorException
(List<String> messages) AuthenticatorException
(List<String> messages, Throwable nested) Constructs anGeneralException
with the specified detail message list and nested Exception. -
Method Summary
Methods inherited from class org.apache.ofbiz.base.util.GeneralException
checkException, getMessage, getMessageList, getNested, getNonNestedMessage, printStackTrace, printStackTrace, printStackTrace
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString
-
Constructor Details
-
AuthenticatorException
public AuthenticatorException()Creates newGeneralException
without detail message. -
AuthenticatorException
Constructs anGeneralException
with the specified detail message.- Parameters:
msg
- the detail message.
-
AuthenticatorException
Constructs anGeneralException
with the specified detail message and nested Exception.- Parameters:
msg
- the detail message.nested
- the nested exception.
-
AuthenticatorException
Constructs anGeneralException
with the specified detail message and nested Exception.- Parameters:
nested
- the nested exception.
-
AuthenticatorException
Constructs anGeneralException
with the specified detail message, list and nested Exception.- Parameters:
msg
- the detail message.messages
- error message list.
-
AuthenticatorException
Constructs anGeneralException
with the specified detail message, list and nested Exception.- Parameters:
msg
- the detail message.messages
- error message list.nested
- the nested exception
-
AuthenticatorException
Constructs anGeneralException
with the specified detail message list and nested Exception.- Parameters:
messages
- error message list.nested
- the nested exception.
-
AuthenticatorException
-