Class: Groonga::Schema::TableNotExists
- Defined in:
- lib/groonga/schema.rb
Overview
テーブルが存在しないときに発生する。
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(name) ⇒ TableNotExists
constructor
A new instance of TableNotExists.
Constructor Details
#initialize(name) ⇒ TableNotExists
Returns a new instance of TableNotExists.
53 54 55 56 |
# File 'lib/groonga/schema.rb', line 53 def initialize(name) @name = name super("table doesn't exist: <#{@name}>") end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
52 53 54 |
# File 'lib/groonga/schema.rb', line 52 def name @name end |