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