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 Details

    • getRow

      OptionalLong getRow()
      Returns:
      the row position in the table to add that was invalid; or empty if unknown.
    • getColumn

      Optional<String> getColumn()
    • getMessage

      String getMessage()
      Returns:
      the error message for this validation failure.