1 22 package org.jboss.ejb3.test.regression.ejbthree485; 23 24 import javax.ejb.Stateless ; 25 26 32 @Stateless  33 public class StatelessBean implements MyRemote 34 { 35 public void giveMeAnException() throws MyException { 36 throw new MyException("Here you are"); 37 } 38 39 public void giveMeARuntimeException() { 40 throw new RuntimeException ("Sure, no problem"); 41 } 42 } 43 | Popular Tags |