class Integrative::Errors::MethodAlreadyExistsError

Public Class Methods

new(integrator, name) click to toggle source
# File lib/integrative/errors.rb, line 59
def initialize(integrator, name)
  message = "Method '#{name}' is already defined on #{integrator.name}." +
    " You can not define integration with this name."
  super(message, integrator)
end