Class Gem::Package::FormatError
In: lib/rubygems/package.rb
Parent: Error

Methods

new  

Attributes

path  [R] 

Public Class methods

[Source]

    # File lib/rubygems/package.rb, line 45
45:     def initialize message, path = nil
46:       @path = path
47: 
48:       message << " in #{path}" if path
49: 
50:       super message
51:     end

[Validate]