1 package org.apache.ojb.otm.transaction; 2 3 17 18 import org.apache.ojb.otm.core.TransactionException; 19 20 public class TransactionFactoryException extends TransactionException 21 { 22 23 26 public TransactionFactoryException() 27 { 28 super(); 29 } 30 31 35 public TransactionFactoryException(String msg) 36 { 37 super(msg); 38 } 39 40 44 public TransactionFactoryException(Throwable cause) 45 { 46 super(cause); 47 } 48 49 54 public TransactionFactoryException(String msg, Throwable cause) 55 { 56 super(msg, cause); 57 } 58 59 } 60 | Popular Tags |