Internal: A generic error thrown by the lexer when it encounters something it can't handle.
Internal: Get the Integer column number of the location of the error.
Internal: Get the Integer line number of the location of the error.
Internal: Initialise a new PuppetLint::LexerError object.
#line_no - The Integer line number of the location of the error. column - The Integer column number of the location of the error.
# File lib/puppet-lint/lexer.rb, line 20 def initialize(line_no, column) @line_no = line_no @column = column end