1 package org.apache.ojb.otm.core; 2 3 17 18 import org.apache.ojb.broker.OJBRuntimeException; 19 20 27 public class OTMGenericException extends OJBRuntimeException 28 { 29 30 33 public OTMGenericException() 34 { 35 super(); 36 } 37 38 42 public OTMGenericException(String msg) 43 { 44 super(msg); 45 } 46 47 51 public OTMGenericException(Throwable cause) 52 { 53 super(cause); 54 } 55 56 61 public OTMGenericException(String msg, Throwable cause) 62 { 63 super(msg, cause); 64 } 65 66 } 67 | Popular Tags |