summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-04-08 11:03:04 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-04-08 11:03:04 +0000
commitb05c85b1f5b17919f8395965ace6101c40918d5c (patch)
tree9a09147f517c4221aed379adda612fd7854da935 /sca-java-2.x
parent975d98a42e868c42c6c80b4acc09c84ea6a8c8ca (diff)
Update sca-api with latest OASIS code, these ones have only formatting and javadoc changes
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@931876 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x')
-rw-r--r--sca-java-2.x/trunk/modules/sca-api/src/main/java/org/oasisopen/sca/ServiceRuntimeException.java44
1 files changed, 22 insertions, 22 deletions
diff --git a/sca-java-2.x/trunk/modules/sca-api/src/main/java/org/oasisopen/sca/ServiceRuntimeException.java b/sca-java-2.x/trunk/modules/sca-api/src/main/java/org/oasisopen/sca/ServiceRuntimeException.java
index 70c429dcc2..8ebaa96500 100644
--- a/sca-java-2.x/trunk/modules/sca-api/src/main/java/org/oasisopen/sca/ServiceRuntimeException.java
+++ b/sca-java-2.x/trunk/modules/sca-api/src/main/java/org/oasisopen/sca/ServiceRuntimeException.java
@@ -1,55 +1,55 @@
/*
- * Copyright(C) OASIS(R) 2005,2009. All Rights Reserved.
+ * Copyright(C) OASIS(R) 2005,2010. All Rights Reserved.
* OASIS trademark, IPR and other policies apply.
*/
package org.oasisopen.sca;
-
/**
- * Base for Exceptions that may be raised by an SCA runtime and which typical
- * application code is not expected to be able to handle.
- *
- * @version $Rev$ $Date$
+ * This exception signals problems in the management of SCA component execution.
*/
public class ServiceRuntimeException extends RuntimeException {
- private static final long serialVersionUID = -3876058842262557092L;
-
/**
- * Override constructor from RuntimeException.
- *
- * @see RuntimeException
+ * Constructs a ServiceRuntimeException with no detail message.
*/
public ServiceRuntimeException() {
+ super();
}
/**
- * Override constructor from RuntimeException.
+ * Constructs a ServiceRuntimeException with the specified detail
+ * message.
*
- * @param message passed to RuntimeException
- * @see RuntimeException
+ * @param message the detail message
*/
public ServiceRuntimeException(String message) {
super(message);
}
/**
- * Override constructor from RuntimeException.
+ * Constructs a ServiceRuntimeException with the specified detail
+ * message and cause.
*
- * @param message passed to RuntimeException
- * @param cause passed to RuntimeException
- * @see RuntimeException
+ * The detail message associated with <code>cause</code> is not
+ * automatically incorporated in this exception's detail message.
+ *
+ * @param message the detail message
+ * @param cause the cause, or null if the cause is nonexistent
+ * or unknown
*/
public ServiceRuntimeException(String message, Throwable cause) {
super(message, cause);
}
-
+
/**
- * Override constructor from RuntimeException.
+ * Constructs a ServiceRuntimeException with the specified cause and a
+ * detail message of <tt>(cause==null ? null : cause.toString())</tt>.
*
- * @param cause passed to RuntimeException
- * @see RuntimeException
+ * @param cause the cause, or null if the cause is nonexistent
+ * or unknown
*/
public ServiceRuntimeException(Throwable cause) {
super(cause);
}
+
+ private static final long serialVersionUID = 6761623124602414622L;
}