class MethodNotOverridden

The exception class used when the process method is not overridden.

Public Instance Methods

message() click to toggle source

Set the message to return when the process method is not overridden.

@return [String] The message to return when the process method is not overridden.

# File lib/populator/errors.rb, line 29
def message
  'You must override the .process method in the extended populator class.'
end