Exception: Sym::Errors::AbstractMethodCalled

Inherits:
ArgumentError
  • Object
show all
Defined in:
lib/sym/errors.rb

Overview

Method was called on an abstract class. Override such methods in subclasses, and use subclasses for instantiation of objects.

Instance Method Summary collapse

Constructor Details

#initialize(method, message = nil) ⇒ AbstractMethodCalled

Returns a new instance of AbstractMethodCalled.



45
46
47
# File 'lib/sym/errors.rb', line 45

def initialize(method, message = nil)
  super("Abstract method call, on #{method}" + (message || ''))
end