1 package org.apache.ojb.broker.transaction; 2 3 17 18 import org.apache.ojb.broker.OJBRuntimeException; 19 20 26 public class TransactionNotInProgressException extends OJBRuntimeException 27 { 28 public TransactionNotInProgressException() 29 { 30 } 31 32 public TransactionNotInProgressException(String msg) 33 { 34 super(msg); 35 } 36 37 public TransactionNotInProgressException(Throwable cause) 38 { 39 super(cause); 40 } 41 42 public TransactionNotInProgressException(String msg, Throwable cause) 43 { 44 super(msg, cause); 45 } 46 } 47 | Popular Tags |