1 17 package org.alfresco.service.cmr.repository; 18 19 import org.alfresco.repo.domain.ChildAssoc; 20 21 26 public class CyclicChildRelationshipException extends RuntimeException  27 { 28 private static final long serialVersionUID = 3545794381924874036L; 29 30 private ChildAssoc assoc; 31 32 public CyclicChildRelationshipException(String msg, ChildAssoc assoc) 33 { 34 super(msg); 35 this.assoc = assoc; 36 } 37 38 public ChildAssoc getAssoc() 39 { 40 return assoc; 41 } 42 } 43 | Popular Tags |