summaryrefslogtreecommitdiff
path: root/java/src
diff options
context:
space:
mode:
Diffstat (limited to 'java/src')
-rw-r--r--java/src/Ice/AMDCallback.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/java/src/Ice/AMDCallback.java b/java/src/Ice/AMDCallback.java
new file mode 100644
index 00000000000..7bf58b15f36
--- /dev/null
+++ b/java/src/Ice/AMDCallback.java
@@ -0,0 +1,20 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+package Ice;
+
+public interface AMDCallback
+{
+ /**
+ * ice_exception indicates to the Ice run time that
+ * the operation completed with an exception.
+ * @param ex The exception to be raised.
+ **/
+ public void ice_exception(java.lang.Exception ex);
+} \ No newline at end of file