1 10 11 package com.triactive.jdo.store; 12 13 import com.triactive.jdo.model.FieldMetaData; 14 import javax.jdo.JDOUserException; 15 16 17 25 26 public class InvalidMetaDataRelationshipException extends JDOUserException 27 { 28 37 38 public InvalidMetaDataRelationshipException(FieldMetaData from, String fromRel, FieldMetaData to, String toRel) 39 { 40 super("" + from + " refers to " + to + " as " + fromRel + ", but it does not refer back using " + toRel); 41 } 42 } 43 | Popular Tags |