class ActiveGroonga::NoKeyTableError

Attributes

table[R]

Public Class Methods

new(table) click to toggle source
Calls superclass method
# File lib/active_groonga/error.rb, line 26
def initialize(table)
  @table = table
  super("table doesn't have key: #{@table}")
end