class ColumnNotFoundError
Makesheets
specific exception classes¶ ↑
Attributes
column[R]
filename[R]
Public Class Methods
new(column, filename, msg="[Error]: Queryable Excel column does not exist")
click to toggle source
Calls superclass method
# File lib/makesheets/exceptions/validate.rb, line 6 def initialize(column, filename, msg="[Error]: Queryable Excel column does not exist") @column = column @filename = filename super(msg) end