1 25 26 package javax.ejb; 27 28 34 public class TransactionRequiredLocalException extends EJBException { 35 36 39 private static final long serialVersionUID = -3884174204131319153L; 40 41 44 public TransactionRequiredLocalException() { 45 super(); 46 } 47 48 52 public TransactionRequiredLocalException(final String message) { 53 super(message); 54 } 55 56 } 57 | Popular Tags |