Line data Source code
1 : // Copyright (C) 2011 The Android Open Source Project 2 : // 3 : // Licensed under the Apache License, Version 2.0 (the "License"); 4 : // you may not use this file except in compliance with the License. 5 : // You may obtain a copy of the License at 6 : // 7 : // http://www.apache.org/licenses/LICENSE-2.0 8 : // 9 : // Unless required by applicable law or agreed to in writing, software 10 : // distributed under the License is distributed on an "AS IS" BASIS, 11 : // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 : // See the License for the specific language governing permissions and 13 : // limitations under the License. 14 : 15 : package com.google.gerrit.server.git; 16 : 17 : import com.google.gerrit.entities.Project; 18 : 19 : /** 20 : * This exception is thrown if a project cannot be created because a project with the same name in a 21 : * different case already exists. This can only happen if the OS has a case insensitive file system 22 : * (e.g. Windows), because in this case the name for the git repository in the file system is 23 : * already occupied by the existing project. 24 : */ 25 : public class RepositoryCaseMismatchException extends RepositoryExistsException { 26 : 27 : private static final long serialVersionUID = 1L; 28 : 29 : /** @param projectName name of the project that cannot be created */ 30 : public RepositoryCaseMismatchException(Project.NameKey projectName) { 31 0 : super(projectName, "Name occupied in other case."); 32 0 : } 33 : }