org.knopflerfish.service.um.useradmin
Class BackEndException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.knopflerfish.service.um.useradmin.BackEndException
- All Implemented Interfaces:
- java.io.Serializable
- public class BackEndException
- extends java.lang.Exception
BackEndException is the base class for exceptions thrown from BackEndControl.
- See Also:
- Serialized Form
Field Summary |
protected java.lang.Throwable |
nested
|
Constructor Summary |
BackEndException(java.lang.String msg)
Public constructor. |
BackEndException(java.lang.String msg,
java.lang.Throwable nested)
Public constructor. |
Method Summary |
java.lang.Throwable |
getNestedException()
Returns the nested throwable of this BackEndException. |
java.lang.String |
toString()
Returns a short description of this throwable object. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
nested
protected java.lang.Throwable nested
BackEndException
public BackEndException(java.lang.String msg,
java.lang.Throwable nested)
- Public constructor.
- Parameters:
msg
- Message for this exception.nested
- A Throwable that caused this exception to be thrown.
BackEndException
public BackEndException(java.lang.String msg)
- Public constructor.
- Parameters:
msg
- Message for this exception.
getNestedException
public java.lang.Throwable getNestedException()
- Returns the nested throwable of this BackEndException.
- Returns:
- a Throwable object or null.
toString
public java.lang.String toString()
- Returns a short description of this throwable object.
- Returns:
- a string representation of this
BackEndException
.