class Taxonomite::InvalidChild
Public Class Methods
new(msg = "Invalid attempt to add Taxonomite::Node.", parent = nil, child = nil)
click to toggle source
Calls superclass method
# File lib/taxonomite/exceptions.rb, line 14 def initialize(msg = "Invalid attempt to add Taxonomite::Node.", parent = nil, child = nil) msg = "Cannot add " + ( child.nil? ? "nil child" : "#{child.name} (#{child.entity_type})" ) + " as child of #{parent.name} (#{parent.entity_type})" unless parent.nil? super(msg) end