class Conflisp::MethodMissing

Error raised when a function is not found

Public Class Methods

new(fn_name) click to toggle source
Calls superclass method Conflisp::ConflispError::new
# File lib/conflisp/method_missing.rb, line 8
def initialize(fn_name)
  message = "Unknown fn `#{fn_name}`"
  super(message)
end