Package com.illumon.iris.importers
Class RowProcessingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
io.deephaven.DeephavenException
com.illumon.iris.importers.RowProcessingException
- All Implemented Interfaces:
Serializable
The Checked Exception thrown when error occurs while processing NonSourceColumn data.
Non Source Column can either be Constant Columns or Single value Partition columns or Custom Setter columns.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault ConstructorRowProcessingException
(String reason) Constructor that supports taking a detailed message describing the error.RowProcessingException
(String reason, Throwable cause) Constructor that builds aRowProcessingException
using the passed in message and optional cause.RowProcessingException
(Throwable cause) Constructor that builds aRowProcessingException
using the specified cause. -
Method Summary
Methods inherited from class io.deephaven.DeephavenException
asUnchecked
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
RowProcessingException
public RowProcessingException()Default Constructor -
RowProcessingException
Constructor that supports taking a detailed message describing the error. SeeException(String)
- Parameters:
reason
- A detailed message describing the error.
-
RowProcessingException
Constructor that builds aRowProcessingException
using the specified cause. SeeException(Throwable)
- Parameters:
cause
- The passed in cause.
-
RowProcessingException
Constructor that builds aRowProcessingException
using the passed in message and optional cause. SeeException(String, Throwable)
- Parameters:
reason
- The passed in message detailing the errorcause
- Optional cause, null would indicate the error is unknown
-