Class TabularException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.refcodes.exception.AbstractException
org.refcodes.tabular.TabularException
All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap
Direct Known Subclasses:
ColumnMismatchException, HeaderMismatchException

public abstract class TabularException extends org.refcodes.exception.AbstractException
Base exception for the refcodes-tabular artifact.
See Also:
  • Constructor Details

    • TabularException

      public TabularException(String aMessage, String aErrorCode)
      Instantiates a new tabular exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aErrorCode - The error code identifying this exception.
    • TabularException

      public TabularException(String aMessage, Throwable aCause, String aErrorCode)
      Instantiates a new tabular exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
      aErrorCode - The error code identifying this exception.
    • TabularException

      public TabularException(String aMessage, Throwable aCause)
      Instantiates a new tabular exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
    • TabularException

      public TabularException(String aMessage)
      Instantiates a new tabular exception.
      Parameters:
      aMessage - The aMessage describing this exception.
    • TabularException

      public TabularException(Throwable aCause, String aErrorCode)
      Instantiates a new tabular exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.
      aErrorCode - The error code identifying this exception.
    • TabularException

      public TabularException(Throwable aCause)
      Instantiates a new tabular exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.