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 19
19:     def initialize message, path = nil
20:       @path = path
21: 
22:       message << " in #{path}" if path
23: 
24:       super message
25:     end

[Validate]