1 25 package org.objectweb.easybeans.tests.common.interceptors.lifecycle.predestroy; 26 27 import javax.annotation.PreDestroy; 28 import javax.interceptor.InvocationContext; 29 30 31 32 38 public class PreDestroyWithException00 extends PreDestroyLogger00{ 39 40 44 @PreDestroy 45 public void interceptor01(final InvocationContext ic){ 46 throw new IllegalStateException ("This interceptor must not be executed."); 47 } 48 49 } 50 | Popular Tags |