Exception: CriteriaOperator::NotImplementedError
- Defined in:
- lib/criteria_operator/exceptions.rb
Overview
Exception class for unimplemented functions in abstract classes.
Instance Method Summary collapse
-
#message ⇒ String
Overrides the default message with a hint regarding the abstract class instantiation.
Instance Method Details
#message ⇒ String
Overrides the default message with a hint regarding the abstract class instantiation.
11 12 13 14 |
# File 'lib/criteria_operator/exceptions.rb', line 11 def 'The function that was called is not implemented. '\ 'Probably the containing class is abstract but was instantiated.' end |