1 package org.apache.ojb.broker; 2 3 17 18 24 public class PersistenceBrokerException extends OJBRuntimeException 25 { 26 29 public PersistenceBrokerException() 30 { 31 super(); 32 } 33 34 39 public PersistenceBrokerException(String msg) 40 { 41 super(msg); 42 } 43 44 49 public PersistenceBrokerException(Throwable cause) 50 { 51 super(cause); 52 } 53 54 60 public PersistenceBrokerException(String msg, Throwable cause) 61 { 62 super(msg, cause); 63 } 64 65 71 public Throwable getSourceException() 72 { 73 return getCause(); 74 } 75 } | Popular Tags |