Exception: Gem::Package::FormatError

Inherits:
Error show all
Defined in:
lib/rubygems/package.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message, source = nil) ⇒ FormatError

Returns a new instance of FormatError.



60
61
62
63
64
65
66
67
68
# File 'lib/rubygems/package.rb', line 60

def initialize(message, source = nil)
  if source
    @path = source.path

    message += " in #{path}" if path
  end

  super message
end

Instance Attribute Details

#pathObject (readonly)

Returns the value of attribute path.



58
59
60
# File 'lib/rubygems/package.rb', line 58

def path
  @path
end