summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Newson <rnewson@apache.org>2023-04-14 15:08:41 +0100
committerRobert Newson <rnewson@apache.org>2023-04-22 11:20:02 +0100
commit755ae73662c328969d715fc103d959eaedb4e397 (patch)
tree2b6022e767a692ff6e3810ada1d7d51d53cf3a28
parent13e87b8e55b88a3e7e3c996525f305c5cfd29817 (diff)
downloadcouchdb-755ae73662c328969d715fc103d959eaedb4e397.tar.gz
delete unused class
-rw-r--r--nouveau/src/main/java/org/apache/couchdb/nouveau/core/IndexClosedException.java35
1 files changed, 0 insertions, 35 deletions
diff --git a/nouveau/src/main/java/org/apache/couchdb/nouveau/core/IndexClosedException.java b/nouveau/src/main/java/org/apache/couchdb/nouveau/core/IndexClosedException.java
deleted file mode 100644
index 86db13afa..000000000
--- a/nouveau/src/main/java/org/apache/couchdb/nouveau/core/IndexClosedException.java
+++ /dev/null
@@ -1,35 +0,0 @@
-//
-// Licensed 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.couchdb.nouveau.core;
-
-import java.io.IOException;
-
-public final class IndexClosedException extends IOException {
-
- public IndexClosedException() {
- }
-
- public IndexClosedException(String message) {
- super(message);
- }
-
- public IndexClosedException(Throwable cause) {
- super(cause);
- }
-
- public IndexClosedException(String message, Throwable cause) {
- super(message, cause);
- }
-
-}