summaryrefslogtreecommitdiff
path: root/java/src
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2001-11-30 23:34:21 +0000
committerMark Spruiell <mes@zeroc.com>2001-11-30 23:34:21 +0000
commit2a016858feb4d21c79a025bad961fc0a0ef59bc7 (patch)
tree95261854117ce56b24f018baba0a9a53924c495f /java/src
parentProxyRequested (diff)
downloadice-2a016858feb4d21c79a025bad961fc0a0ef59bc7.tar.bz2
ice-2a016858feb4d21c79a025bad961fc0a0ef59bc7.tar.xz
ice-2a016858feb4d21c79a025bad961fc0a0ef59bc7.zip
cannot generate UserExceptionFactory due to missing throws clause
Diffstat (limited to 'java/src')
-rw-r--r--java/src/Ice/UserExceptionFactory.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/java/src/Ice/UserExceptionFactory.java b/java/src/Ice/UserExceptionFactory.java
new file mode 100644
index 00000000000..a52aa4972b2
--- /dev/null
+++ b/java/src/Ice/UserExceptionFactory.java
@@ -0,0 +1,19 @@
+// **********************************************************************
+//
+// Copyright (c) 2001
+// MutableRealms, Inc.
+// Huntsville, AL, USA
+//
+// All Rights Reserved
+//
+// **********************************************************************
+
+package Ice;
+
+public interface UserExceptionFactory
+{
+ void createAndThrow(String type)
+ throws UserException;
+
+ void destroy();
+}