This is an automated email from the ASF dual-hosted git repository. btellier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit 3e3b0463aced66d9b85e9911d0b1141de34608ef Author: Benoit Tellier <[email protected]> AuthorDate: Mon Nov 18 14:03:54 2019 +0700 [Refactoring] DuplicateUserException is never used --- .../api/exception/DuplicateUserException.java | 65 ---------------------- 1 file changed, 65 deletions(-) diff --git a/server/data/data-api/src/main/java/org/apache/james/sieverepository/api/exception/DuplicateUserException.java b/server/data/data-api/src/main/java/org/apache/james/sieverepository/api/exception/DuplicateUserException.java deleted file mode 100644 index 807444e..0000000 --- a/server/data/data-api/src/main/java/org/apache/james/sieverepository/api/exception/DuplicateUserException.java +++ /dev/null @@ -1,65 +0,0 @@ -/* - * 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.james.sieverepository.api.exception; - -/** - * <code>DuplicateUserException</code> - */ -public class DuplicateUserException extends SieveRepositoryException { - - private static final long serialVersionUID = 2393178076895724704L; - - /** - * Creates a new instance of DuplicateUserException. - * - */ - public DuplicateUserException() { - } - - /** - * Creates a new instance of DuplicateUserException. - * - * @param message - * @param cause - */ - public DuplicateUserException(String message, Throwable cause) { - super(message, cause); - } - - /** - * Creates a new instance of DuplicateUserException. - * - * @param message - */ - public DuplicateUserException(String message) { - super(message); - } - - /** - * Creates a new instance of DuplicateUserException. - * - * @param cause - */ - public DuplicateUserException(Throwable cause) { - super(cause); - } - -} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
