|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Throwable
java.lang.Exception
de.fu_berlin.ties.ProcessingException
public class ProcessingException
Exception thrown when an error occurs during processing.
Constructor Summary | |
---|---|
ProcessingException(String message)
Constructs a new exception with the specified detail message. |
|
ProcessingException(String message,
Throwable cause)
Constructs a new exception with the specified detail message and cause. |
|
ProcessingException(Throwable cause)
Constructs a new exception with the specified cause . |
Method Summary |
---|
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, 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 |
---|
public ProcessingException(String message)
message
- the detail messagepublic ProcessingException(Throwable cause)
cause
. The
detail message is set to (cause==null ? null :
cause.toString())
(which typically contains the class and detail
message of cause
). This constructor is useful for exceptions
that are little more than wrappers for other throwables.
cause
- the cause (which is saved for later retrieval by the
Throwable.getCause()
method)public ProcessingException(String message, Throwable cause)
cause
is
not automatically incorporated in this exception's detail
message.
message
- the detail messagecause
- the cause (which is saved for later retrieval by the
Throwable.getCause()
method)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |