1 10 11 package com.triactive.jdo.model; 12 13 import javax.jdo.JDOFatalUserException; 14 15 16 26 27 public class ClassMetaDataMismatchException extends JDOFatalUserException 28 { 29 35 36 public ClassMetaDataMismatchException(Class clazz, String msg) 37 { 38 super("Enhanced class " + clazz.getName() + " does not agree with metadata: " + msg); 39 } 40 } 41 | Popular Tags |