Package es.uvigo.esei.sing.textproc.step
Class ProcessingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
es.uvigo.esei.sing.textproc.step.ProcessingException
- All Implemented Interfaces:
java.io.Serializable
public final class ProcessingException extends java.lang.Exception
Represents a unrecoverable exception which occurs while executing a
processing operation.
- Author:
- Alejandro González García
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description ProcessingException()
Constructs a new processing exception withnull
as its detail message.ProcessingException(java.lang.String message)
Constructs a new exception with the specified detail message.ProcessingException(java.lang.String message, java.lang.Throwable cause)
Constructs a new exception with the specified detail message and cause.ProcessingException(java.lang.Throwable cause)
Constructs a new exception with the specified cause and a detail message of(cause==null ? null : cause.toString())
(which typically contains the class and detail message ofcause
). -
Method Summary
-
Constructor Details
-
ProcessingException
public ProcessingException()Constructs a new processing exception withnull
as its detail message. The cause is not initialized. -
ProcessingException
Constructs a new exception with the specified detail message. The cause is not initialized.- Parameters:
message
- The detail message.
-
ProcessingException
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- The detail message.cause
- The cause. Anull
value is permitted, and indicates that the cause is nonexistent or unknown.
-
ProcessingException
Constructs a new exception with the specified cause and a detail message of(cause==null ? null : cause.toString())
(which typically contains the class and detail message ofcause
).- Parameters:
cause
- The cause. Anull
value is permitted, and indicates that the cause is nonexistent or unknown.
-