Method: Gem::RequestSet::Lockfile::ParseError#initialize

Defined in:
lib/rubygems/request_set/lockfile.rb

#initialize(message, column, line, path) ⇒ ParseError

Raises a ParseError with the given message which was encountered at a line and column while parsing.



32
33
34
35
36
37
# 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