class Gem::Package::FormatError
属性
path[R]
公共类方法
new(message, source = nil) 点击切换源代码
调用超类方法
# File rubygems/package.rb, line 59 def initialize(message, source = nil) if source @path = source.is_a?(String) ? source : source.path message += " in #{path}" if path end super message end