com.waveset.util
Class WSUserLockedException

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
                          extended bycom.waveset.util.WSUserLockedException
All Implemented Interfaces:
java.io.Serializable

public class WSUserLockedException
extends WSFailedLoginException

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
WSUserLockedException()
          Construct a WSUserLockedException with no message or nested throwable.
WSUserLockedException(java.util.List msgs)
          Construct a new WSUserLockedException with a list of messages.
WSUserLockedException(Message msg)
          Construct a new WSUserLockedException with a detailed message supplied as a Message object.
WSUserLockedException(Message msg, java.lang.String resName, java.lang.String accountId, int errorCode)
          Construct a new WSUserLockedException with a detailed message supplied as a Message object and an associated error code
WSUserLockedException(java.lang.String message)
          Construct a new WSUserLockedException with a detailed message.
WSUserLockedException(java.lang.Throwable e)
          Construct a new WavesetException wrapping an existing exception.
 
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

WSUserLockedException

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


WSUserLockedException

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

Parameters:
msg - detail message

WSUserLockedException

public WSUserLockedException(Message msg,
                             java.lang.String resName,
                             java.lang.String accountId,
                             int errorCode)
Construct a new WSUserLockedException 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

WSUserLockedException

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

Parameters:
msgs - error messages

WSUserLockedException

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


WSUserLockedException

public WSUserLockedException(java.lang.Throwable e)
Construct a new WavesetException wrapping an existing exception.

The existing exception will be embedded in the new one, and its message will become the default message for the WavesetException.