com.waveset.util
Class WSFailedLoginException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended bycom.waveset.util.ExceptionWrapper
              extended bycom.waveset.util.WavesetException
                  extended bycom.waveset.util.WSLoginException
                      extended bycom.waveset.util.WSFailedLoginException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
WSMaxPasswordLoginsExceededException, WSMaxQuestionLoginsExceededException, WSUserDisabledException, WSUserLockedException

public class WSFailedLoginException
extends WSLoginException

Signals that user authentication failed

See Also:
Serialized Form

Nested Class Summary
 
Nested classes inherited from class com.waveset.util.WSLoginException
WSLoginException.LoginError
 
Field Summary
static java.lang.String code_id
           
 
Constructor Summary
WSFailedLoginException()
          Construct a WSFailedLoginException with no message or nested throwable.
WSFailedLoginException(java.util.List msgs)
          Construct a new WSFailedLoginException with a list of messages.
WSFailedLoginException(Message msg)
          Construct a new WSFailedLoginException with a detailed message supplied as a Message object.
WSFailedLoginException(Message msg, java.util.List loginErrorList)
          Construct a new WSLoginException with a list of login result maps
WSFailedLoginException(Message msg, java.lang.String resName, java.lang.String accountId, int errorCode)
          Construct a new WSLoginException with a detailed message supplied as a Message object and an associated error code
WSFailedLoginException(java.lang.String msg)
          Construct a new WSFailedLoginException with a detailed message.
WSFailedLoginException(java.lang.String msg, java.util.List loginErrorList)
          Construct a new WSFailedLoginException with a list of login result maps
WSFailedLoginException(java.lang.String msg, java.lang.String resName, java.lang.String accountId, int errorCode)
          Construct a new WSFailedLoginException with a detailed message and a error code
WSFailedLoginException(java.lang.Throwable e)
           
 
Methods inherited from class com.waveset.util.WSLoginException
addLoginErrorInfo, addLoginErrorInfo, getLoginErrorInfo
 
Methods inherited from class com.waveset.util.WavesetException
addMessage, addMessage, breakpoint, checkBreakpoint, enableBreakpoint, getLocalizedMessage, getLocalizedMessage, getMessage, getMessage, getMessage, getMessageObject, getMessageObject, getMessageOnly, getMessages
 
Methods inherited from class com.waveset.util.ExceptionWrapper
addException, clearExceptions, describeException, getAllMessages, getException, getException, getExceptionCount, hasException, printStackTrace, printStackTrace, printStackTrace, removeException
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getStackTrace, initCause, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

code_id

public static final java.lang.String code_id
See Also:
Constant Field Values
Constructor Detail

WSFailedLoginException

public WSFailedLoginException()
Construct a WSFailedLoginException with no message or nested throwable.


WSFailedLoginException

public WSFailedLoginException(Message msg)
Construct a new WSFailedLoginException with a detailed message supplied as a Message object.

Parameters:
msg - detail message

WSFailedLoginException

public WSFailedLoginException(Message msg,
                              java.lang.String resName,
                              java.lang.String accountId,
                              int errorCode)
Construct a new WSLoginException with a detailed message supplied as a Message object and an associated error code

Parameters:
msg - detail message
resName - name of resource login error occurred on
accountId - name of resource accountId login error occurred on
errorCode - error code

WSFailedLoginException

public WSFailedLoginException(Message msg,
                              java.util.List loginErrorList)
Construct a new WSLoginException with a list of login result maps

Parameters:
msg - detail message
loginErrorList - list of login result maps

WSFailedLoginException

public WSFailedLoginException(java.util.List msgs)
Construct a new WSFailedLoginException with a list of messages.

Parameters:
msgs - error messages

WSFailedLoginException

public WSFailedLoginException(java.lang.String msg)
Construct a new WSFailedLoginException with a detailed message.

Parameters:
msg - detail message

WSFailedLoginException

public WSFailedLoginException(java.lang.String msg,
                              java.lang.String resName,
                              java.lang.String accountId,
                              int errorCode)
Construct a new WSFailedLoginException with a detailed message and a error code

Parameters:
msg - detail message
resName - name of resource login error occurred on
accountId - name of resource accountId login error occurred on
errorCode - error code

WSFailedLoginException

public WSFailedLoginException(java.lang.String msg,
                              java.util.List loginErrorList)
Construct a new WSFailedLoginException with a list of login result maps

Parameters:
msg - detail message
loginErrorList - list of login result maps

WSFailedLoginException

public WSFailedLoginException(java.lang.Throwable e)