class Rabbit::CantAllocateColorError

Attributes

color[R]

Public Class Methods

new(color) click to toggle source
Calls superclass method
# File lib/rabbit/error.rb, line 100
def initialize(color)
  @color = color
  super(_("can't allocate color: %s"), color)
end