class Operations::Errors::NotImplementedError

Public Class Methods

new(klass, missing_method) click to toggle source
Calls superclass method
# File lib/operations/errors/not_implemented_error.rb, line 4
def initialize(klass, missing_method)
  super("The class #{klass} does not implement the method #{missing_method}")
end