class HasSiblings::ForeignKeyNotFoundError

Public Class Methods

new(association_name, owner_class_name) click to toggle source
Calls superclass method
# File lib/has_siblings/errors.rb, line 9
def initialize(association_name, owner_class_name)
  super("Could not find the inverse_of for the association #{association_name} in model #{owner_class_name}")
end