1 package org.apache.ojb.broker; 2 3 17 18 25 public class TransactionNotInProgressException extends PersistenceBrokerException 26 { 27 30 public TransactionNotInProgressException() 31 { 32 super(); 33 } 34 35 40 public TransactionNotInProgressException(String msg) 41 { 42 super(msg); 43 } 44 45 50 public TransactionNotInProgressException(Throwable cause) 51 { 52 super(cause); 53 } 54 55 61 public TransactionNotInProgressException(String msg, Throwable cause) 62 { 63 super(msg, cause); 64 } 65 } 66 | Popular Tags |