1 package org.apache.ojb.broker; 2 3 17 18 import org.apache.commons.lang.exception.NestableRuntimeException; 19 20 26 public class OJBRuntimeException extends NestableRuntimeException 27 { 28 31 public OJBRuntimeException() 32 { 33 super(); 34 } 35 36 41 public OJBRuntimeException(String msg) 42 { 43 super(msg); 44 } 45 46 51 public OJBRuntimeException(Throwable cause) 52 { 53 super(cause); 54 } 55 56 62 public OJBRuntimeException(String msg, Throwable cause) 63 { 64 super(msg, cause); 65 } 66 } 67 | Popular Tags |