Exception: Rubasteme::SchemeSyntaxErrorError

Inherits:
Error
  • Object
show all
Defined in:
lib/rubasteme/error.rb

Overview

Indicates a syntax error as Scheme program.

Instance Method Summary collapse

Constructor Details

#initialize(msg) ⇒ SchemeSyntaxErrorError

Returns a new instance of SchemeSyntaxErrorError.



18
19
20
# File 'lib/rubasteme/error.rb', line 18

def initialize(msg)
  super(EMSG[:scheme_syntax_error] % msg)
end