Author: olamy
Date: Mon Aug 3 21:13:28 2009
New Revision: 800567
URL: http://svn.apache.org/viewvc?rev=800567&view=rev
Log:
backward compat
Added:
maven/components/branches/MNG-4162/maven-compat/src/main/java/org/apache/maven/artifact/manager/WagonConfigurationException.java
(with props)
Added:
maven/components/branches/MNG-4162/maven-compat/src/main/java/org/apache/maven/artifact/manager/WagonConfigurationException.java
URL:
http://svn.apache.org/viewvc/maven/components/branches/MNG-4162/maven-compat/src/main/java/org/apache/maven/artifact/manager/WagonConfigurationException.java?rev=800567&view=auto
==============================================================================
---
maven/components/branches/MNG-4162/maven-compat/src/main/java/org/apache/maven/artifact/manager/WagonConfigurationException.java
(added)
+++
maven/components/branches/MNG-4162/maven-compat/src/main/java/org/apache/maven/artifact/manager/WagonConfigurationException.java
Mon Aug 3 21:13:28 2009
@@ -0,0 +1,38 @@
+package org.apache.maven.artifact.manager;
+
+/*
+ * 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.
+ */
+
+/**
+ * @author Olivier Lamy
+ *
+ */
+public class WagonConfigurationException
+ extends org.apache.maven.repository.legacy.WagonConfigurationException
+{
+ public WagonConfigurationException( String repositoryId, String message,
Throwable cause )
+ {
+ super( repositoryId, message, cause );
+ }
+
+ public WagonConfigurationException( String repositoryId, String message )
+ {
+ super( repositoryId, message );
+ }
+}
Propchange:
maven/components/branches/MNG-4162/maven-compat/src/main/java/org/apache/maven/artifact/manager/WagonConfigurationException.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
maven/components/branches/MNG-4162/maven-compat/src/main/java/org/apache/maven/artifact/manager/WagonConfigurationException.java
------------------------------------------------------------------------------
svn:keywords = Author Date Revision Id