Method: Db2Query::ColumnError#initialize

Defined in:
lib/db2_query/error.rb

#initialize(def_cols, res_cols) ⇒ ColumnError

Returns a new instance of ColumnError.



20
21
22
23
24
# File 'lib/db2_query/error.rb', line 20

def initialize(def_cols, res_cols)
  @def_cols = def_cols
  @res_cols = res_cols
  super(message)
end