diff options
author | Martin Stockhammer <martin_s@apache.org> | 2019-10-04 13:04:18 +0200 |
---|---|---|
committer | Martin Stockhammer <martin_s@apache.org> | 2019-10-04 13:04:18 +0200 |
commit | 5d90a2102de4d8abad62b5f1c6fb385dd43c88e4 (patch) | |
tree | ca39192813183dfb023f8bacbb8789251e6d2fda /archiva-modules/archiva-base/archiva-repository-api | |
parent | ff28da65a6b9562b7a1848a244fd103ea8ff951d (diff) | |
download | archiva-5d90a2102de4d8abad62b5f1c6fb385dd43c88e4.tar.gz archiva-5d90a2102de4d8abad62b5f1c6fb385dd43c88e4.zip |
Renaming packages to make them distinct over modules
Diffstat (limited to 'archiva-modules/archiva-base/archiva-repository-api')
-rw-r--r-- | archiva-modules/archiva-base/archiva-repository-api/src/main/java/org/apache/archiva/repository/metadata/RepositoryMetadataException.java | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/archiva-modules/archiva-base/archiva-repository-api/src/main/java/org/apache/archiva/repository/metadata/RepositoryMetadataException.java b/archiva-modules/archiva-base/archiva-repository-api/src/main/java/org/apache/archiva/repository/metadata/RepositoryMetadataException.java new file mode 100644 index 000000000..16cc89ea0 --- /dev/null +++ b/archiva-modules/archiva-base/archiva-repository-api/src/main/java/org/apache/archiva/repository/metadata/RepositoryMetadataException.java @@ -0,0 +1,52 @@ +package org.apache.archiva.repository.metadata; + +/* + * 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. + */ + +import org.apache.archiva.repository.RepositoryException; + +/** + * RepositoryMetadataException + * + * + */ +public class RepositoryMetadataException + extends RepositoryException +{ + + public RepositoryMetadataException() + { + super(); + } + + public RepositoryMetadataException( String message, Throwable cause ) + { + super( message, cause ); + } + + public RepositoryMetadataException( String message ) + { + super( message ); + } + + public RepositoryMetadataException( Throwable cause ) + { + super( cause ); + } +} |