Exception: Sym::Errors::AbstractMethodCalled
- 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
-
#initialize(method, message = nil) ⇒ AbstractMethodCalled
constructor
A new instance of AbstractMethodCalled.
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, = nil) super("Abstract method call, on #{method}" + ( || '')) end |