Exception: ActiveFedora::InverseOfAssociationNotFoundError
- Inherits:
 - 
      RuntimeError
      
        
- Object
 - RuntimeError
 - ActiveFedora::InverseOfAssociationNotFoundError
 
 
- Defined in:
 - lib/active_fedora/associations.rb
 
Overview
:nodoc:
Instance Method Summary collapse
- 
  
    
      #initialize(reflection, associated_class = nil)  ⇒ InverseOfAssociationNotFoundError 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of InverseOfAssociationNotFoundError.
 
Constructor Details
#initialize(reflection, associated_class = nil) ⇒ InverseOfAssociationNotFoundError
Returns a new instance of InverseOfAssociationNotFoundError.
      7 8 9  | 
    
      # File 'lib/active_fedora/associations.rb', line 7 def initialize(reflection, associated_class = nil) super("Could not find the inverse association for #{reflection.name} (#{reflection.[:inverse_of].inspect} in #{associated_class.nil? ? reflection.class_name : associated_class.name})") end  |