1 25 package org.objectweb.easybeans.tests.common.exception; 26 27 33 public class TransactionException extends Exception { 34 37 private static final long serialVersionUID = -6025865694739434505L; 38 39 42 private Exception excParent; 43 44 49 public TransactionException(final String message, final Exception e){ 50 super(message); 51 excParent = e; 52 } 53 54 58 public Exception getParentException(){ 59 return excParent; 60 } 61 62 } 63 | Popular Tags |