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