Raised when a lockfile cannot be parsed
Attributes
Read
The column where the error was encountered
Read
The line where the error was encountered
Read
The location of the lock file
Class Methods
lib/rubygems/request_set/lockfile.rb
View on GitHub
# File tmp/rubies/ruby-3.0.5/lib/rubygems/request_set/lockfile.rb, line 31
def initialize(message, column, line, path)
@line = line
@column = column
@path = path
super "#{message} (at line #{line} column #{column})"
end
Raises a ParseError
with the given message
which was encountered at a line
and column
while parsing.