summaryrefslogtreecommitdiff
path: root/java/src/IceInternal/UserExceptionFactory.java
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2003-10-06 23:26:58 +0000
committerMichi Henning <michi@zeroc.com>2003-10-06 23:26:58 +0000
commit5844bc00dc1abb29c3f516f581ec241bac74b15d (patch)
treedee8ccd65fa475fb7181c18d80bc24405e07a490 /java/src/IceInternal/UserExceptionFactory.java
parentFixed checkpoint, small Evictor refactoring (diff)
downloadice-5844bc00dc1abb29c3f516f581ec241bac74b15d.tar.bz2
ice-5844bc00dc1abb29c3f516f581ec241bac74b15d.tar.xz
ice-5844bc00dc1abb29c3f516f581ec241bac74b15d.zip
Moved UserExceptionFactory from Ice to IceInternal namespace/package.
Diffstat (limited to 'java/src/IceInternal/UserExceptionFactory.java')
-rw-r--r--java/src/IceInternal/UserExceptionFactory.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/java/src/IceInternal/UserExceptionFactory.java b/java/src/IceInternal/UserExceptionFactory.java
new file mode 100644
index 00000000000..b66574b1084
--- /dev/null
+++ b/java/src/IceInternal/UserExceptionFactory.java
@@ -0,0 +1,23 @@
+// **********************************************************************
+//
+// Copyright (c) 2003
+// ZeroC, Inc.
+// Billerica, MA, USA
+//
+// All Rights Reserved.
+//
+// Ice is free software; you can redistribute it and/or modify it under
+// the terms of the GNU General Public License version 2 as published by
+// the Free Software Foundation.
+//
+// **********************************************************************
+
+package IceInternal;
+
+public interface UserExceptionFactory
+{
+ void createAndThrow()
+ throws Ice.UserException;
+
+ void destroy();
+}