Author: lresende
Date: Tue Feb 27 18:18:35 2007
New Revision: 512565

URL: http://svn.apache.org/viewvc?view=rev&rev=512565
Log:
Missing exception for contribution services

Added:
    
incubator/tuscany/branches/sca-java-integration/sca/kernel/core/src/main/java/org/apache/tuscany/core/services/deployment/DomainUpdateException.java

Added: 
incubator/tuscany/branches/sca-java-integration/sca/kernel/core/src/main/java/org/apache/tuscany/core/services/deployment/DomainUpdateException.java
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/sca/kernel/core/src/main/java/org/apache/tuscany/core/services/deployment/DomainUpdateException.java?view=auto&rev=512565
==============================================================================
--- 
incubator/tuscany/branches/sca-java-integration/sca/kernel/core/src/main/java/org/apache/tuscany/core/services/deployment/DomainUpdateException.java
 (added)
+++ 
incubator/tuscany/branches/sca-java-integration/sca/kernel/core/src/main/java/org/apache/tuscany/core/services/deployment/DomainUpdateException.java
 Tue Feb 27 18:18:35 2007
@@ -0,0 +1,47 @@
+/*
+ * 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 org.apache.tuscany.core.services.deployment;
+
+import org.apache.tuscany.host.deployment.DeploymentException;
+
+public class DomainUpdateException extends DeploymentException {
+    public DomainUpdateException() {
+    }
+
+    public DomainUpdateException(String message) {
+        super(message);
+    }
+
+    public DomainUpdateException(String message, String identifier) {
+        super(message, identifier);
+    }
+
+    public DomainUpdateException(String message, Throwable cause) {
+        super(message, cause);
+    }
+
+    public DomainUpdateException(String message, String identifier, Throwable 
cause) {
+        super(message, identifier, cause);
+    }
+
+    public DomainUpdateException(Throwable cause) {
+        super(cause);
+    }
+}



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to