From 6dd8d6a5652b2301a65f97dee17b5b0b9cfb038b Mon Sep 17 00:00:00 2001 From: nash Date: Sun, 26 Jul 2009 22:38:57 +0000 Subject: Fix TUSCANY-3172 (domain manager doesn't report errors cleanly to the nodes) git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@797997 13f79535-47bb-0310-9956-ffa450edef68 --- .../customer/CustomerNotFoundException.java | 58 ++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 branches/sca-java-1.5.1/itest/domainmgr/error/payment/src/main/java/scatours/customer/CustomerNotFoundException.java (limited to 'branches/sca-java-1.5.1/itest/domainmgr/error/payment/src/main/java/scatours/customer/CustomerNotFoundException.java') diff --git a/branches/sca-java-1.5.1/itest/domainmgr/error/payment/src/main/java/scatours/customer/CustomerNotFoundException.java b/branches/sca-java-1.5.1/itest/domainmgr/error/payment/src/main/java/scatours/customer/CustomerNotFoundException.java new file mode 100644 index 0000000000..89f56ce6ec --- /dev/null +++ b/branches/sca-java-1.5.1/itest/domainmgr/error/payment/src/main/java/scatours/customer/CustomerNotFoundException.java @@ -0,0 +1,58 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package scatours.customer; + + +public class CustomerNotFoundException extends Exception { + private static final long serialVersionUID = -129752837478357452L; + + /** + * + */ + public CustomerNotFoundException() { + + } + + /** + * @param message + */ + public CustomerNotFoundException(String message) { + super(message); + + } + + /** + * @param cause + */ + public CustomerNotFoundException(Throwable cause) { + super(cause); + + } + + /** + * @param message + * @param cause + */ + public CustomerNotFoundException(String message, Throwable cause) { + super(message, cause); + + } + +} -- cgit v1.2.3