Exception: Regexp::Scanner::InvalidSequenceError

Inherits:
ValidationError
  • Object
show all
Defined in:
lib/regexp_parser/scanner.rb

Overview

Invalid sequence format. Used for escape sequences, mainly.

Instance Method Summary collapse

Constructor Details

#initialize(what = 'sequence', where = '') ⇒ InvalidSequenceError

Returns a new instance of InvalidSequenceError.



1569
1570
1571
# File 'lib/regexp_parser/scanner.rb', line 1569

def initialize(what = 'sequence', where = '')
  super "Invalid #{what} at #{where}"
end