class CriteriaOperator::NotImplementedError
Exception class for unimplemented functions in abstract classes.
Public Instance Methods
message()
click to toggle source
Overrides the default message with a hint regarding the abstract class instantiation. @return [String] the error message
# File lib/criteria_operator/exceptions.rb, line 11 def message 'The function that was called is not implemented. '\ 'Probably the containing class is abstract but was instantiated.' end