Exception: Regexp::Scanner::UnknownUnicodePropertyError
- Inherits:
 - 
      ValidationError
      
        
- Object
 - StandardError
 - Parser::Error
 - ScannerError
 - ValidationError
 - Regexp::Scanner::UnknownUnicodePropertyError
 
 
- Defined in:
 - lib/regexp_parser/scanner/errors/validation_error.rb
 
Overview
The property name was not recognized by the scanner.
Instance Method Summary collapse
- 
  
    
      #initialize(name, _)  ⇒ UnknownUnicodePropertyError 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of UnknownUnicodePropertyError.
 
Methods inherited from ValidationError
Constructor Details
#initialize(name, _) ⇒ UnknownUnicodePropertyError
Returns a new instance of UnknownUnicodePropertyError.
      52 53 54  | 
    
      # File 'lib/regexp_parser/scanner/errors/validation_error.rb', line 52 def initialize(name, _) super "Unknown unicode character property name #{name}" end  |