toolbox.services.ldap.simple
Class SimpleUserException

Package class diagram package SimpleUserException
java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by toolbox.services.ldap.simple.SimpleUserException
All Implemented Interfaces:
java.io.Serializable

public class SimpleUserException
extends java.lang.Exception

Exception that is generated during user provisioning operations.

See Also:
Serialized Form

Constructor Summary
SimpleUserException(java.lang.Exception ex)
          Create a new SimpleUserException from the given Exception.
SimpleUserException(java.lang.String msg)
          Create a new SimpleUserException with the given message.
 
Method Summary
 java.lang.String getMessage()
          Return the message from parent class.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SimpleUserException

public SimpleUserException(java.lang.Exception ex)
Create a new SimpleUserException from the given Exception.

Parameters:
ex - The wrapped exception instance.

SimpleUserException

public SimpleUserException(java.lang.String msg)
Create a new SimpleUserException with the given message.

Parameters:
msg - String containing the exception message.
Method Detail

getMessage

public java.lang.String getMessage()
Return the message from parent class.

Overrides:
getMessage in class java.lang.Throwable
Returns:
String containing the exception message contained in the parent class.