Package io.deephaven.engine.util.input
Interface InputTableValidationException.StructuredError
- All Known Implementing Classes:
StructuredErrorImpl
- Enclosing class:
- InputTableValidationException
public static interface InputTableValidationException.StructuredError
An error indicating that invalid data was entered; with an optional row position and column name.
Implementers of InputTableUpdater may use StructuredErrorImpl as an implementation.
-
Method Summary
-
Method Details
-
getRow
OptionalLong getRow()- Returns:
- the row position in the table to add that was invalid; or
emptyif unknown.
-
getColumn
-
getMessage
String getMessage()- Returns:
- the error message for this validation failure.
-