toolbox.services.ldap.simple
Class SimpleGroupException

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

public class SimpleGroupException
extends java.lang.Exception

Exception that is generated during group provisioning operations.

See Also:
Serialized Form

Constructor Summary
SimpleGroupException(java.lang.Exception ex)
          Create a new SimpleGroupException from the given Exception.
SimpleGroupException(java.lang.String msg)
          Create a new SimpleGroupException 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

SimpleGroupException

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

Parameters:
ex - The wrapped exception instance.

SimpleGroupException

public SimpleGroupException(java.lang.String msg)
Create a new SimpleGroupException 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.