|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Throwable
java.lang.Error
ibis.ipl.IbisError
Like java.lang.Error, but with a cause.
Constructor Summary | |
IbisError()
Constructsn a IbisError with
null as its error detail message. |
|
IbisError(java.lang.String s)
Constructs a IbisError with
the specified detail message. |
|
IbisError(java.lang.String s,
java.lang.Throwable cause)
Constructs a IbisError with
the specified detail message and cause. |
|
IbisError(java.lang.Throwable cause)
Constructs a IbisError with
the specified cause. |
Method Summary | |
java.lang.Throwable |
getCause()
Returns the cause of this error. |
java.lang.String |
getMessage()
Returns the error detail message of this error, including the one of cause , if there is one. |
java.lang.Throwable |
initCause(java.lang.Throwable t)
Initializes and returns the cause of this error. |
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 IbisError()
IbisError
with
null
as its error detail message.
public IbisError(java.lang.String s)
IbisError
with
the specified detail message.
s
- the detail messagepublic IbisError(java.lang.String s, java.lang.Throwable cause)
IbisError
with
the specified detail message and cause.
s
- the detail messagecause
- the causepublic IbisError(java.lang.Throwable cause)
IbisError
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 |