Exception: Regexp::Syntax::NotImplementedError
- Inherits:
 - 
      SyntaxError
      
        
- Object
 - StandardError
 - Parser::Error
 - SyntaxError
 - Regexp::Syntax::NotImplementedError
 
 
- Defined in:
 - lib/regexp_parser/syntax/base.rb
 
Instance Method Summary collapse
- 
  
    
      #initialize(syntax, type, token)  ⇒ NotImplementedError 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of NotImplementedError.
 
Constructor Details
#initialize(syntax, type, token) ⇒ NotImplementedError
Returns a new instance of NotImplementedError.
      3 4 5  | 
    
      # File 'lib/regexp_parser/syntax/base.rb', line 3 def initialize(syntax, type, token) super "#{syntax} does not implement: [#{type}:#{token}]" end  |