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 with null 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 of cause).
  • Method Summary

    Methods inherited from class java.lang.Throwable

    addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • ProcessingException

      Constructs a new processing exception with null as its detail message. The cause is not initialized.
    • ProcessingException

      public ProcessingException​(java.lang.String message)
      Constructs a new exception with the specified detail message. The cause is not initialized.
      Parameters:
      message - The detail message.
    • ProcessingException

      public ProcessingException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a new exception with the specified detail message and cause.
      Parameters:
      message - The detail message.
      cause - The cause. A null value is permitted, and indicates that the cause is nonexistent or unknown.
    • ProcessingException

      public 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 of cause).
      Parameters:
      cause - The cause. A null value is permitted, and indicates that the cause is nonexistent or unknown.