Exception: Secrets::Errors::AbstractMethodCalled
- Inherits:
-
ArgumentError
- Object
- ArgumentError
- Secrets::Errors::AbstractMethodCalled
- Defined in:
- lib/secrets/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.
20 21 22 |
# File 'lib/secrets/errors.rb', line 20 def initialize(method, = nil) super("Abstract method call, on #{method}" + ( || '')) end |