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:
java.io.Serializable
public class AuthenticatorException extends GeneralException
AuthenticatorException- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AuthenticatorException()
Creates newGeneralException
without detail message.AuthenticatorException(java.lang.String msg)
Constructs anGeneralException
with the specified detail message.AuthenticatorException(java.lang.String msg, java.lang.Throwable nested)
Constructs anGeneralException
with the specified detail message and nested Exception.AuthenticatorException(java.lang.String msg, java.util.List<java.lang.String> messages)
Constructs anGeneralException
with the specified detail message, list and nested Exception.AuthenticatorException(java.lang.String msg, java.util.List<java.lang.String> messages, java.lang.Throwable nested)
Constructs anGeneralException
with the specified detail message, list and nested Exception.AuthenticatorException(java.lang.Throwable nested)
Constructs anGeneralException
with the specified detail message and nested Exception.AuthenticatorException(java.util.List<java.lang.String> messages)
AuthenticatorException(java.util.List<java.lang.String> messages, java.lang.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, checkException, getMessage, getMessageList, getNested, getNonNestedMessage, printStackTrace, printStackTrace, printStackTrace
-
-
-
-
Constructor Detail
-
AuthenticatorException
public AuthenticatorException()
Creates newGeneralException
without detail message.
-
AuthenticatorException
public AuthenticatorException(java.lang.String msg)
Constructs anGeneralException
with the specified detail message.- Parameters:
msg
- the detail message.
-
AuthenticatorException
public AuthenticatorException(java.lang.String msg, java.lang.Throwable nested)
Constructs anGeneralException
with the specified detail message and nested Exception.- Parameters:
msg
- the detail message.nested
- the nested exception.
-
AuthenticatorException
public AuthenticatorException(java.lang.Throwable nested)
Constructs anGeneralException
with the specified detail message and nested Exception.- Parameters:
nested
- the nested exception.
-
AuthenticatorException
public AuthenticatorException(java.lang.String msg, java.util.List<java.lang.String> messages)
Constructs anGeneralException
with the specified detail message, list and nested Exception.- Parameters:
msg
- the detail message.messages
- error message list.
-
AuthenticatorException
public AuthenticatorException(java.lang.String msg, java.util.List<java.lang.String> messages, java.lang.Throwable nested)
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
public AuthenticatorException(java.util.List<java.lang.String> messages, java.lang.Throwable nested)
Constructs anGeneralException
with the specified detail message list and nested Exception.- Parameters:
messages
- error message list.nested
- the nested exception.
-
AuthenticatorException
public AuthenticatorException(java.util.List<java.lang.String> messages)
-
-