1 22 package org.jboss.tm.remoting.interfaces; 23 24 31 public class TransactionNotPreparedException extends Exception 32 { 33 static final long serialVersionUID = -4131393859923384723L; 34 35 public TransactionNotPreparedException() 36 { 37 } 38 39 public TransactionNotPreparedException(String msg) 40 { 41 super(msg); 42 } 43 44 public TransactionNotPreparedException(Throwable cause) 45 { 46 super(cause); 47 } 48 49 } 50 | Popular Tags |