class Regexp::Scanner::InvalidSequenceError
Invalid sequence format. Used for escape sequences, mainly.
Public Class Methods
new(what = 'sequence', where = '')
click to toggle source
Calls superclass method
Regexp::Scanner::ValidationError.new
# File lib/regexp_parser/scanner.rb, line 32 def initialize(what = 'sequence', where = '') super "Invalid #{what} at #{where}" end