class Rabbit::UnknownCursorTypeError

Attributes

type[R]

Public Class Methods

new(type) click to toggle source
Calls superclass method
# File lib/rabbit/error.rb, line 214
def initialize(type)
  @type = type
  super(_("unknown cursor type: %s") % @type)
end