summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/itest/exceptions-simple-ws/src/main/java/com/example/ExampleService.java
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-02-19 13:35:21 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-02-19 13:35:21 +0000
commit78c3c91ee4c46f0ebe94bc6146a2d8a33d8eb81c (patch)
treefd47b757d887f7f370151fad6107ea698d192d99 /branches/sca-java-1.x/itest/exceptions-simple-ws/src/main/java/com/example/ExampleService.java
parent777027f7f82298a5b9ec455de451c61252e0aecd (diff)
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
Diffstat (limited to 'branches/sca-java-1.x/itest/exceptions-simple-ws/src/main/java/com/example/ExampleService.java')
-rw-r--r--branches/sca-java-1.x/itest/exceptions-simple-ws/src/main/java/com/example/ExampleService.java1
1 files changed, 1 insertions, 0 deletions
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);
}