Class DRException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
BrokenFlowError, DataNotSortedException, DROperatorException, EndOfDataException, EOFException, FieldExistsException, FieldTypeNotSupportedException, FieldTypesNotComparableException, GraphCancellationException, InvalidArgumentCountException, InvalidFieldException, InvalidFunctionArgumentException, InvalidOperandTypeException, InvalidPMMLException, InvalidSchemaException, IteratorEndOfDataException, JDBCException, JSONException, ParseExpressionException, PathParseException, RowTooLongException, ScriptingException, ScriptOutputTypeException, SplitParsingException, TypeNotSupportedException, TypesNotComparableException, UnsupportedPMMLException

public class DRException extends RuntimeException
Base for exceptions thrown by DataRush.
See Also:
  • Constructor Details

    • DRException

      public DRException()
      Constructs a DRException with no message or cause.
    • DRException

      public DRException(String message)
      Constructs a DRException with the specified message.
      Parameters:
      message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method).
    • DRException

      public DRException(String message, Throwable cause)
      Constructs a DRException with the specified message and cause.
      Parameters:
      message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method).
      cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
    • DRException

      public DRException(Throwable cause)
      Constructs a DRException with the specified cause.
      Parameters:
      cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)