Exception: Salesforce::ColumnNotFound

Inherits:
StandardError
  • Object
show all
Defined in:
lib/salesforce/errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(name, table_name) ⇒ ColumnNotFound

Returns a new instance of ColumnNotFound.



24
25
26
# File 'lib/salesforce/errors.rb', line 24

def initialize(name, table_name)
  super("Column ''#{name}' not found for #{table_name}.")
end