From b05c85b1f5b17919f8395965ace6101c40918d5c Mon Sep 17 00:00:00 2001 From: antelder Date: Thu, 8 Apr 2010 11:03:04 +0000 Subject: 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 --- .../org/oasisopen/sca/ServiceRuntimeException.java | 44 +++++++++++----------- 1 file changed, 22 insertions(+), 22 deletions(-) (limited to 'sca-java-2.x') 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 cause 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 (cause==null ? null : cause.toString()). * - * @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; } -- cgit v1.2.3