Class AuthenticatorException

  • All Implemented Interfaces:
    java.io.Serializable

    public class AuthenticatorException
    extends GeneralException
    AuthenticatorException
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      AuthenticatorException()
      Creates new GeneralException without detail message.
      AuthenticatorException​(java.lang.String msg)
      Constructs an GeneralException with the specified detail message.
      AuthenticatorException​(java.lang.String msg, java.lang.Throwable nested)
      Constructs an GeneralException with the specified detail message and nested Exception.
      AuthenticatorException​(java.lang.String msg, java.util.List<java.lang.String> messages)
      Constructs an GeneralException 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 an GeneralException with the specified detail message, list and nested Exception.
      AuthenticatorException​(java.lang.Throwable nested)
      Constructs an GeneralException 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 an GeneralException with the specified detail message list and nested Exception.
    • Constructor Detail

      • AuthenticatorException

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

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

        public AuthenticatorException​(java.lang.String msg,
                                      java.lang.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​(java.lang.Throwable nested)
        Constructs an GeneralException 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 an GeneralException 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 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​(java.util.List<java.lang.String> messages,
                                      java.lang.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​(java.util.List<java.lang.String> messages)