class Rabbit::UnknownPropertyError

Attributes

name[R]

Public Class Methods

new(name) click to toggle source
Calls superclass method
# File lib/rabbit/error.rb, line 98
def initialize(name)
  @name = name
  super(_("Unknown property: %s") % name)
end