Exception: Conflisp::MethodMissing

Inherits:
ConflispError show all
Defined in:
lib/conflisp/method_missing.rb

Overview

Error raised when a function is not found

Instance Attribute Summary

Attributes inherited from ConflispError

#conflisp_stack

Instance Method Summary collapse

Methods inherited from ConflispError

#to_s

Constructor Details

#initialize(fn_name) ⇒ MethodMissing

Returns a new instance of MethodMissing.



8
9
10
11
# File 'lib/conflisp/method_missing.rb', line 8

def initialize(fn_name)
  message = "Unknown fn `#{fn_name}`"
  super(message)
end