From 78c3c91ee4c46f0ebe94bc6146a2d8a33d8eb81c Mon Sep 17 00:00:00 2001 From: slaws Date: Thu, 19 Feb 2009 13:35:21 +0000 Subject: Add a method that returns an unchecked exception git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@745854 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/main/java/com/example/ExampleClientImpl.java | 7 +++++++ .../src/main/java/com/example/ExampleService.java | 1 + .../src/main/java/com/example/ExampleServiceImpl.java | 6 ++++++ 3 files changed, 14 insertions(+) (limited to 'branches/sca-java-1.x/itest/exceptions-simple-ws/src/main/java/com/example') diff --git a/branches/sca-java-1.x/itest/exceptions-simple-ws/src/main/java/com/example/ExampleClientImpl.java b/branches/sca-java-1.x/itest/exceptions-simple-ws/src/main/java/com/example/ExampleClientImpl.java index d6545b5a23..c86059f4f5 100644 --- a/branches/sca-java-1.x/itest/exceptions-simple-ws/src/main/java/com/example/ExampleClientImpl.java +++ b/branches/sca-java-1.x/itest/exceptions-simple-ws/src/main/java/com/example/ExampleClientImpl.java @@ -40,5 +40,12 @@ public class ExampleClientImpl implements ExampleClient { } catch (BusinessException e) { System.out.println("caught exception from hello(): " + e.getMessage() + " for " + e.getClientName()); } + + try { + Object result = myService.helloUnchecked("John"); + System.out.println("myService returned " + result.getClass().getName()); + } catch (Exception e) { + System.out.println("caught exception from helloUnchecked(): " + e.getMessage()); + } } } diff --git a/branches/sca-java-1.x/itest/exceptions-simple-ws/src/main/java/com/example/ExampleService.java b/branches/sca-java-1.x/itest/exceptions-simple-ws/src/main/java/com/example/ExampleService.java index 30ea559694..4f82e10241 100644 --- a/branches/sca-java-1.x/itest/exceptions-simple-ws/src/main/java/com/example/ExampleService.java +++ b/branches/sca-java-1.x/itest/exceptions-simple-ws/src/main/java/com/example/ExampleService.java @@ -24,4 +24,5 @@ import org.osoa.sca.annotations.Remotable; public interface ExampleService { String hello(String name) throws BusinessException; + String helloUnchecked(String name); } diff --git a/branches/sca-java-1.x/itest/exceptions-simple-ws/src/main/java/com/example/ExampleServiceImpl.java b/branches/sca-java-1.x/itest/exceptions-simple-ws/src/main/java/com/example/ExampleServiceImpl.java index b3b6f033e5..5d054c1c9b 100644 --- a/branches/sca-java-1.x/itest/exceptions-simple-ws/src/main/java/com/example/ExampleServiceImpl.java +++ b/branches/sca-java-1.x/itest/exceptions-simple-ws/src/main/java/com/example/ExampleServiceImpl.java @@ -18,9 +18,15 @@ */ package com.example; +import org.osoa.sca.ServiceRuntimeException; + public class ExampleServiceImpl implements ExampleService { public String hello(String name) throws BusinessException { throw new BusinessException("bad news", name); // return "Hello, " + name; } + + public String helloUnchecked(String name){ + throw new ServiceRuntimeException("bad unchecked news"); + } } -- cgit v1.2.3