1 15 package hivemind.test.services.impl; 16 17 import hivemind.test.services.DemoService; 18 19 import org.apache.hivemind.ApplicationRuntimeException; 20 21 27 public class DemoServiceImpl extends SimpleServiceImpl implements DemoService 28 { 29 30 33 public void noResult() 34 { 35 36 } 37 38 41 public void alwaysFail() throws RuntimeException  42 { 43 throw new ApplicationRuntimeException("Failure in method alwaysFail.", (Throwable ) null); 44 } 45 46 } 47 | Popular Tags |