1 package org.apache.ojb.otm.core; 2 3 17 18 25 public class TransactionException extends OTMGenericException 26 { 27 28 31 public TransactionException() 32 { 33 super(); 34 } 35 36 40 public TransactionException(String msg) 41 { 42 super(msg); 43 } 44 45 49 public TransactionException(Throwable cause) 50 { 51 super(cause); 52 } 53 54 59 public TransactionException(String msg, Throwable cause) 60 { 61 super(msg, cause); 62 } 63 64 } 65 | Popular Tags |