com.entrust.toolkit.exceptions
Class InvalidUserException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.io.IOException
                    |
                    +--com.entrust.toolkit.exceptions.PKCS7Exception
                          |
                          +--com.entrust.toolkit.exceptions.InvalidUserException

public class InvalidUserException
extends PKCS7Exception

Thrown to indicate that the operation is not permitted because the user is not logged in.

See Also:
Serialized Form

Fields inherited from class com.entrust.toolkit.exceptions.PKCS7Exception
m_exception
 
Constructor Summary
InvalidUserException()
          Constructs a InvalidUserException with no detail message.
InvalidUserException(java.lang.String s)
          Constructs a InvalidUserException with the specified detail message.
InvalidUserException(java.lang.String s, java.lang.Exception inner)
          Constructs a InvalidUserException with the specified detail message that wraps an exception thrown inside the PKCS#7 processing code.
 
Methods inherited from class com.entrust.toolkit.exceptions.PKCS7Exception
getInnerException
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

InvalidUserException

public InvalidUserException()
Constructs a InvalidUserException with no detail message.

InvalidUserException

public InvalidUserException(java.lang.String s)
Constructs a InvalidUserException with the specified detail message.
Parameters:
s - the detail message

InvalidUserException

public InvalidUserException(java.lang.String s,
                            java.lang.Exception inner)
Constructs a InvalidUserException with the specified detail message that wraps an exception thrown inside the PKCS#7 processing code.
Parameters:
s - the detail message
inner - the exception thrown by the inner code