class Rabbit::NotReadableError

Attributes

name[R]

Public Class Methods

new(name) click to toggle source
Calls superclass method
# File lib/rabbit/rabbit.rb, line 157
def initialize(name)
  @name = name
  super(_("can not be read: %s") % @name)
end