Package xal.tools.dsp

Class DataProcessingException

All Implemented Interfaces:
Serializable

public class DataProcessingException extends RuntimeException
Exception representing an unrecoverable error in data processing.
Author:
Christopher K. Allen
See Also:
  • Constructor Details

    • DataProcessingException

      public DataProcessingException()
      Create a new exception with no detail message.
    • DataProcessingException

      public DataProcessingException(Throwable cause)
      Create a new exception with a cause. The cause object is saved for later retrieval by the Throwable.getCause() method. A null value is permitted, and indicates that the cause is nonexistent or unknown.
      Parameters:
      cause - cause of the exception
      See Also:
    • DataProcessingException

      public DataProcessingException(String message)
      Create a new exception with a detail message.
      Parameters:
      message - detail message
    • DataProcessingException

      public DataProcessingException(String message, Throwable cause)
      Create a new exception with a detail message and cause.
      Parameters:
      message - detail message
      cause - the cause object
      See Also: