1 25 package org.objectweb.easybeans.tests.common.ejbs.stateful.containermanaged.lifecallback; 26 27 import javax.annotation.PreDestroy; 28 29 import org.objectweb.easybeans.tests.common.exception.IllegalException; 30 31 32 33 39 public class BasePreDestroyWithException extends BasePreDestroyAllOrder00{ 40 41 45 @PreDestroy 46 public void intercept00() { 47 throw new IllegalException("This interceptor should not be executed."); 48 } 49 } 50 | Popular Tags |