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

public class AuthenticatorException extends GeneralException
AuthenticatorException
See Also:
  • Constructor Details

    • AuthenticatorException

      public AuthenticatorException()
      Creates new GeneralException without detail message.
    • AuthenticatorException

      public AuthenticatorException(String msg)
      Constructs an GeneralException with the specified detail message.
      Parameters:
      msg - the detail message.
    • AuthenticatorException

      public AuthenticatorException(String msg, Throwable nested)
      Constructs an GeneralException with the specified detail message and nested Exception.
      Parameters:
      msg - the detail message.
      nested - the nested exception.
    • AuthenticatorException

      public AuthenticatorException(Throwable nested)
      Constructs an GeneralException with the specified detail message and nested Exception.
      Parameters:
      nested - the nested exception.
    • AuthenticatorException

      public AuthenticatorException(String msg, List<String> messages)
      Constructs an GeneralException with the specified detail message, list and nested Exception.
      Parameters:
      msg - the detail message.
      messages - error message list.
    • AuthenticatorException

      public AuthenticatorException(String msg, List<String> messages, Throwable nested)
      Constructs an GeneralException 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(List<String> messages, Throwable nested)
      Constructs an GeneralException with the specified detail message list and nested Exception.
      Parameters:
      messages - error message list.
      nested - the nested exception.
    • AuthenticatorException

      public AuthenticatorException(List<String> messages)