class Purview::Exceptions::TableAlreadyAssignedForColumn

Attributes

column[R]

Public Class Methods

new(column) click to toggle source
# File lib/purview/exceptions/table_already_assigned_for_column.rb, line 4
def initialize(column)
  @column = column
end

Public Instance Methods

message() click to toggle source
# File lib/purview/exceptions/table_already_assigned_for_column.rb, line 8
def message
  "Table already assigned for column: #{column.name}"
end