Class: Groonga::Schema::UnknownIndexTargetTable

Inherits:
Error
  • Object
show all
Defined in:
lib/groonga/schema.rb

Overview

未知のインデックス対象テーブルを指定したときに発生する。

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(table) ⇒ UnknownIndexTargetTable

Returns a new instance of UnknownIndexTargetTable.



95
96
97
98
# File 'lib/groonga/schema.rb', line 95

def initialize(table)
  @table = table
  super("unknown index target table: <#{@table.inspect}>")
end

Instance Attribute Details

#tableObject (readonly)

Returns the value of attribute table.



94
95
96
# File 'lib/groonga/schema.rb', line 94

def table
  @table
end