class Gem::RequestSet::Lockfile::ParseError
在无法解析 lockfile 时引发
属性
遇到错误的列
遇到错误的行
lock 文件的位置
Public Class Methods
Source
# File lib/rubygems/request_set/lockfile.rb, line 32 def initialize(message, column, line, path) @line = line @column = column @path = path super "#{message} (at line #{line} column #{column})" end
使用给定的 message 引发一个 ParseError,该错误在解析时出现在 line 和 column。
调用超类方法
Exception::new