1 package org.apache.ojb.jdori.sql; 2 16 17 import javax.jdo.JDOFatalInternalException; 18 19 24 public class OjbStoreFatalInternalException extends JDOFatalInternalException 25 { 26 30 OjbStoreFatalInternalException(Class clazz, String methodName, String msg) 31 { 32 super(clazz.getName() + "." + methodName + ": " + msg); 33 } 34 35 40 OjbStoreFatalInternalException(Class clazz, String methodName, Exception nested) 41 { 42 super(clazz.getName() + "." + methodName, new Exception [] { nested }); 43 } 44 45 51 OjbStoreFatalInternalException(Class clazz, String methodName, String msg, Exception nested) 52 { 53 super(clazz.getName() + "." + methodName + ": " + msg, new Exception [] { nested }); 54 } 55 } 56 | Popular Tags |