class ActiveQuery::SQLParser::SyntaxError
Attributes
line[R]
pos[R]
Public Class Methods
new(msg = "", line:, pos:)
click to toggle source
Calls superclass method
# File lib/active_query/sql_parser.rb, line 9 def initialize(msg = "", line:, pos:) msg = "Missing #{msg} on line #{line} (pos. #{pos})" super(msg) end