1 package org.apache.ojb.otm.connector; 2 3 import org.apache.ojb.broker.OJBRuntimeException; 4 5 19 20 24 25 public class OTMConnectionRuntimeException extends OJBRuntimeException 26 { 27 public OTMConnectionRuntimeException() 28 { 29 } 30 31 public OTMConnectionRuntimeException(String message) 32 { 33 super(message); 34 } 35 36 public OTMConnectionRuntimeException(String message, Throwable cause) 37 { 38 super(message, cause); 39 } 40 41 public OTMConnectionRuntimeException(Throwable cause) 42 { 43 super(cause); 44 } 45 } 46 | Popular Tags |