class Turnip::Table::ColumnNotExist

Public Class Methods

new(column_name) click to toggle source
Calls superclass method
# File lib/turnip/table.rb, line 10
def initialize(column_name)
  super("The column named \"#{column_name}\" does not exist")
end