[LOG4J2-2443] Remove unused exception, seems to be a duplicate of CatalogModificationException
Project: http://git-wip-us.apache.org/repos/asf/logging-log4j-audit/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j-audit/commit/13f05815 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j-audit/tree/13f05815 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j-audit/diff/13f05815 Branch: refs/heads/master Commit: 13f058151de0f6a45136073f347750c177cbbf54 Parents: b3f088e Author: Andrei Ivanov <[email protected]> Authored: Sun Sep 16 16:17:31 2018 +0300 Committer: Andrei Ivanov <[email protected]> Committed: Sun Sep 16 16:17:31 2018 +0300 ---------------------------------------------------------------------- .../api/exception/CatalogWriteException.java | 41 -------------------- 1 file changed, 41 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j-audit/blob/13f05815/log4j-catalog/log4j-catalog-api/src/main/java/org/apache/logging/log4j/catalog/api/exception/CatalogWriteException.java ---------------------------------------------------------------------- diff --git a/log4j-catalog/log4j-catalog-api/src/main/java/org/apache/logging/log4j/catalog/api/exception/CatalogWriteException.java b/log4j-catalog/log4j-catalog-api/src/main/java/org/apache/logging/log4j/catalog/api/exception/CatalogWriteException.java deleted file mode 100644 index 4f44501..0000000 --- a/log4j-catalog/log4j-catalog-api/src/main/java/org/apache/logging/log4j/catalog/api/exception/CatalogWriteException.java +++ /dev/null @@ -1,41 +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.logging.log4j.catalog.api.exception; - -/** - * - */ -public class CatalogWriteException extends CatalogException { - - private static final long serialVersionUID = -373722489224872918L; - - public CatalogWriteException() { - super(); - } - - public CatalogWriteException(String msg) { - super(msg); - } - - public CatalogWriteException(Throwable t) { - super(t); - } - - public CatalogWriteException(String msg, Throwable t) { - super(msg, t); - } -}
