1 25 package org.objectweb.easybeans.tests.common.exception; 26 27 import javax.ejb.ApplicationException ; 28 29 35 @ApplicationException (rollback = false) 36 public class AppRuntimeException extends RuntimeException { 37 38 39 42 private static final long serialVersionUID = -1815523942019853389L; 43 44 48 public AppRuntimeException(final Throwable cause) { 49 super(cause); 50 } 51 } 52 | Popular Tags |