summaryrefslogtreecommitdiffstats
path: root/tags/java/sca/1.5.1-RC3/modules/sca-api/src/main/java/org/osoa/sca/NoRegisteredCallbackException.java
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-09-30 11:14:44 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-09-30 11:14:44 +0000
commit82df55ba981ff028bdf376f333d6e1e2cfee3644 (patch)
tree35855e3083734d84e3c60e71cee186197fcd7816 /tags/java/sca/1.5.1-RC3/modules/sca-api/src/main/java/org/osoa/sca/NoRegisteredCallbackException.java
parent5d29d53c4ad74b2ec834aad00cc5273bebe6e3f4 (diff)
Tag for 1.5.1-RC3
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@820247 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'tags/java/sca/1.5.1-RC3/modules/sca-api/src/main/java/org/osoa/sca/NoRegisteredCallbackException.java')
-rw-r--r--tags/java/sca/1.5.1-RC3/modules/sca-api/src/main/java/org/osoa/sca/NoRegisteredCallbackException.java57
1 files changed, 57 insertions, 0 deletions
diff --git a/tags/java/sca/1.5.1-RC3/modules/sca-api/src/main/java/org/osoa/sca/NoRegisteredCallbackException.java b/tags/java/sca/1.5.1-RC3/modules/sca-api/src/main/java/org/osoa/sca/NoRegisteredCallbackException.java
new file mode 100644
index 0000000000..0a0c2afff9
--- /dev/null
+++ b/tags/java/sca/1.5.1-RC3/modules/sca-api/src/main/java/org/osoa/sca/NoRegisteredCallbackException.java
@@ -0,0 +1,57 @@
+/*
+ * (c) Copyright BEA Systems, Inc., Cape Clear Software, International Business Machines Corp, Interface21, IONA Technologies,
+ * Oracle, Primeton Technologies, Progress Software, Red Hat, Rogue Wave Software, SAP AG., Siemens AG., Software AG., Sybase
+ * Inc., TIBCO Software Inc., 2005, 2007. All rights reserved.
+ *
+ * see http://www.osoa.org/display/Main/Service+Component+Architecture+Specifications
+ */
+package org.osoa.sca;
+
+/**
+ * Exception thrown to indicate that no callback has been registered
+ * when interacting with a service.
+ *
+ * @version $Rev$ $Date$
+ */
+public class NoRegisteredCallbackException extends ServiceRuntimeException {
+ private static final long serialVersionUID = 3734864942222558406L;
+
+ /**
+ * Override constructor from ServiceRuntimeException.
+ *
+ * @see ServiceRuntimeException
+ */
+ public NoRegisteredCallbackException() {
+ }
+
+ /**
+ * Override constructor from ServiceRuntimeException.
+ *
+ * @param message passed to ServiceRuntimeException
+ * @see ServiceRuntimeException
+ */
+ public NoRegisteredCallbackException(String message) {
+ super(message);
+ }
+
+ /**
+ * Override constructor from ServiceRuntimeException.
+ *
+ * @param message passed to ServiceRuntimeException
+ * @param cause passed to ServiceRuntimeException
+ * @see ServiceRuntimeException
+ */
+ public NoRegisteredCallbackException(String message, Throwable cause) {
+ super(message, cause);
+ }
+
+ /**
+ * Override constructor from ServiceRuntimeException.
+ *
+ * @param cause passed to ServiceRuntimeException
+ * @see ServiceRuntimeException
+ */
+ public NoRegisteredCallbackException(Throwable cause) {
+ super(cause);
+ }
+}