Class: Haecksler::TypeError

Inherits:
Object
  • Object
show all
Defined in:
lib/haecksler/column.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value, column) ⇒ TypeError

Returns a new instance of TypeError.



9
10
11
12
# File 'lib/haecksler/column.rb', line 9

def initialize(value, column)
  @value = value
  @type = column.type
end

Instance Attribute Details

#typeObject (readonly)

Returns the value of attribute type.



7
8
9
# File 'lib/haecksler/column.rb', line 7

def type
  @type
end

#valueObject (readonly)

Returns the value of attribute value.



7
8
9
# File 'lib/haecksler/column.rb', line 7

def value
  @value
end

Instance Method Details

#to_sObject



14
15
16
# File 'lib/haecksler/column.rb', line 14

def to_s
  "Could not parse '#{value}' to '#{type}"
end