class ActiveGroonga::KeyOverrideError
Attributes
key[R]
table[R]
Public Class Methods
new(table, key)
click to toggle source
Calls superclass method
# File lib/active_groonga/error.rb, line 34 def initialize(table, key) @table = table @key = key super("can't override existing record key: #{@table}: <#{@key}>") end