Exception: Regexp::Syntax::NotImplementedError
- Inherits:
- 
      SyntaxError
      
        - Object
- StandardError
- 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.
| 5 6 7 | # File 'lib/regexp_parser/syntax/base.rb', line 5 def initialize(syntax, type, token) super "#{syntax.class.name} does not implement: [#{type}:#{token}]" end |