Class JdbcConsumerException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.arrow.adapter.jdbc.consumer.exceptions.JdbcConsumerException
All Implemented Interfaces:
Serializable

public class JdbcConsumerException extends RuntimeException
Exception while consuming JDBC data. This exception stores the JdbcFieldInfo for the column and the ArrowType for the corresponding vector for easier debugging.
See Also:
  • Constructor Details

    • JdbcConsumerException

      public JdbcConsumerException(String message, Throwable cause, JdbcFieldInfo fieldInfo, ArrowType arrowType)
      Construct JdbcConsumerException with all fields.
      Parameters:
      message - error message
      cause - original exception
      fieldInfo - JdbcFieldInfo for the column
      arrowType - ArrowType for the corresponding vector
  • Method Details