Class: Groonga::Schema::UnknownIndexTargetTable
- Defined in:
- lib/groonga/schema.rb
Overview
未知のインデックス対象テーブルを指定したときに発生する。
Instance Attribute Summary collapse
-
#table ⇒ Object
readonly
Returns the value of attribute table.
Instance Method Summary collapse
-
#initialize(table) ⇒ UnknownIndexTargetTable
constructor
A new instance of UnknownIndexTargetTable.
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
#table ⇒ Object (readonly)
Returns the value of attribute table.
94 95 96 |
# File 'lib/groonga/schema.rb', line 94 def table @table end |