class Deptree::DuplicateActionError

Public Class Methods

new(dependency, action) click to toggle source
Calls superclass method
# File lib/deptree/errors.rb, line 12
def initialize(dependency, action)
  super("Dependency #{dependency} already contains the definition of action #{action}")
end