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