Exception: Rabbit::NotFileError

Inherits:
SourceUnreadableError 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(name) ⇒ NotFileError

Returns a new instance of NotFileError.



119
120
121
122
# File 'lib/rabbit/error.rb', line 119

def initialize(name)
  @name = name
  super(_("not a file: %s") % @name)
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



118
119
120
# File 'lib/rabbit/error.rb', line 118

def name
  @name
end