Class ColumnMismatchException

    • Nested Class Summary

      • Nested classes/interfaces inherited from interface org.refcodes.exception.ErrorCodeAccessor

        org.refcodes.exception.ErrorCodeAccessor.ErrorCodeBuilder<B extends org.refcodes.exception.ErrorCodeAccessor.ErrorCodeBuilder<B>>, org.refcodes.exception.ErrorCodeAccessor.ErrorCodeMutator, org.refcodes.exception.ErrorCodeAccessor.ErrorCodeProperty
      • Nested classes/interfaces inherited from interface org.refcodes.mixin.ValueAccessor

        org.refcodes.mixin.ValueAccessor.ValueBuilder<V extends java.lang.Object,B extends org.refcodes.mixin.ValueAccessor.ValueBuilder<V,B>>, org.refcodes.mixin.ValueAccessor.ValueMutator<V extends java.lang.Object>, org.refcodes.mixin.ValueAccessor.ValueProperty<V extends java.lang.Object>
    • Constructor Summary

      Constructors 
      Constructor Description
      ColumnMismatchException​(Column<?> aColumn, java.lang.Object aValue, java.lang.String message)
      Instantiates a new column mismatch exception.
      ColumnMismatchException​(Column<?> aColumn, java.lang.Object aValue, java.lang.String aMessage, java.lang.String aErrorCode)
      Instantiates a new column mismatch exception.
      ColumnMismatchException​(Column<?> aColumn, java.lang.Object aValue, java.lang.String message, java.lang.Throwable cause)
      Instantiates a new column mismatch exception.
      ColumnMismatchException​(Column<?> aColumn, java.lang.Object aValue, java.lang.String aMessage, java.lang.Throwable aCause, java.lang.String aErrorCode)
      Instantiates a new column mismatch exception.
      ColumnMismatchException​(Column<?> aColumn, java.lang.Object aValue, java.lang.Throwable cause)
      Instantiates a new column mismatch exception.
      ColumnMismatchException​(Column<?> aColumn, java.lang.Object aValue, java.lang.Throwable aCause, java.lang.String aErrorCode)
      Instantiates a new column mismatch exception.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      Column<?> getColumn​()
      Gets the column.
      java.lang.Object getValue​()
      • Methods inherited from class org.refcodes.exception.AbstractException

        getErrorCode
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from interface org.refcodes.mixin.ValueAccessor

        getValueOr
    • Constructor Detail

      • ColumnMismatchException

        public ColumnMismatchException​(Column<?> aColumn,
                                       java.lang.Object aValue,
                                       java.lang.String aMessage,
                                       java.lang.String aErrorCode)
        Instantiates a new column mismatch exception.
        Parameters:
        aColumn - the column
        aValue - the value
        aMessage - the message
        aErrorCode - the error code
      • ColumnMismatchException

        public ColumnMismatchException​(Column<?> aColumn,
                                       java.lang.Object aValue,
                                       java.lang.String aMessage,
                                       java.lang.Throwable aCause,
                                       java.lang.String aErrorCode)
        Instantiates a new column mismatch exception.
        Parameters:
        aColumn - the column
        aValue - the value
        aMessage - the message
        aCause - the cause
        aErrorCode - the error code
      • ColumnMismatchException

        public ColumnMismatchException​(Column<?> aColumn,
                                       java.lang.Object aValue,
                                       java.lang.String message,
                                       java.lang.Throwable cause)
        Instantiates a new column mismatch exception.
        Parameters:
        aColumn - the column
        aValue - the value
        message - the message
        cause - the cause
      • ColumnMismatchException

        public ColumnMismatchException​(Column<?> aColumn,
                                       java.lang.Object aValue,
                                       java.lang.String message)
        Instantiates a new column mismatch exception.
        Parameters:
        aColumn - the column
        aValue - the value
        message - the message
      • ColumnMismatchException

        public ColumnMismatchException​(Column<?> aColumn,
                                       java.lang.Object aValue,
                                       java.lang.Throwable aCause,
                                       java.lang.String aErrorCode)
        Instantiates a new column mismatch exception.
        Parameters:
        aColumn - the column
        aValue - the value
        aCause - the cause
        aErrorCode - the error code
      • ColumnMismatchException

        public ColumnMismatchException​(Column<?> aColumn,
                                       java.lang.Object aValue,
                                       java.lang.Throwable cause)
        Instantiates a new column mismatch exception.
        Parameters:
        aColumn - the column
        aValue - the value
        cause - the cause
    • Method Detail

      • getValue

        public java.lang.Object getValue​()
        Specified by:
        getValue in interface org.refcodes.mixin.ValueAccessor<java.lang.Object>