Exception: Rabbit::ImmutableSourceTypeError

Inherits:
Error
  • Object
show all
Defined in:
lib/rabbit/error.rb

Constant Summary

Constants included from GetText

GetText::DOMAIN

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from GetText

included

Constructor Details

#initialize(source_type) ⇒ ImmutableSourceTypeError

Returns a new instance of ImmutableSourceTypeError.



135
136
137
138
# File 'lib/rabbit/error.rb', line 135

def initialize(source_type)
  @source_type = source_type
  super(_("immutable source type: %s") % @source_type)
end

Instance Attribute Details

#source_typeObject (readonly)

Returns the value of attribute source_type.



134
135
136
# File 'lib/rabbit/error.rb', line 134

def source_type
  @source_type
end