|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Throwable
java.lang.Exception
ibis.ipl.IbisException
Like java.lang.Exception, but with a cause.
Constructor Summary | |
IbisException()
Constructs an IbisException with
null as its error detail message. |
|
IbisException(java.lang.String s)
Constructs an IbisException with
the specified detail message. |
|
IbisException(java.lang.String s,
java.lang.Throwable cause)
Constructs an IbisException with
the specified detail message and cause. |
|
IbisException(java.lang.Throwable cause)
Constructs an IbisException with
the specified cause. |
Method Summary | |
java.lang.Throwable |
getCause()
Returns the cause of this exception. |
java.lang.String |
getMessage()
Returns the error detail message of this exception, including the one of cause , if there is one. |
java.lang.Throwable |
initCause(java.lang.Throwable t)
Initializes and returns the cause of this exception. |
void |
printStackTrace()
Prints stack trace of both cause and
this . |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public IbisException()
IbisException
with
null
as its error detail message.
public IbisException(java.lang.String s)
IbisException
with
the specified detail message.
s
- the detail messagepublic IbisException(java.lang.String s, java.lang.Throwable cause)
IbisException
with
the specified detail message and cause.
s
- the detail messagecause
- the causepublic IbisException(java.lang.Throwable cause)
IbisException
with
the specified cause.
cause
- the causeMethod Detail |
public java.lang.Throwable initCause(java.lang.Throwable t)
public java.lang.Throwable getCause()
public java.lang.String getMessage()
cause
, if there is one.
public void printStackTrace()
cause
and
this
.
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |