class Purview::Exceptions::TableAlreadyAssignedForIndex
Attributes
index[R]
Public Class Methods
new(index)
click to toggle source
# File lib/purview/exceptions/table_already_assigned_for_index.rb, line 4 def initialize(index) @index = index end
Public Instance Methods
message()
click to toggle source
# File lib/purview/exceptions/table_already_assigned_for_index.rb, line 8 def message "Table already assigned for index on columns: #{index.table.column_names.join(', ')}" end