This is an automated email from the ASF dual-hosted git repository.
doebele pushed a commit to branch version3
in repository https://gitbox.apache.org/repos/asf/empire-db.git
The following commit(s) were added to refs/heads/version3 by this push:
new 4daa56e EMPIREDB-362 fix
4daa56e is described below
commit 4daa56ef350a1a6e56bcb8f43b745c99f2feab71
Author: Rainer Döbele <[email protected]>
AuthorDate: Sun Jan 23 13:46:21 2022 +0100
EMPIREDB-362 fix
---
.../exceptions/MiscellaneousErrorException.java | 34 ++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git
a/empire-db/src/main/java/org/apache/empire/exceptions/MiscellaneousErrorException.java
b/empire-db/src/main/java/org/apache/empire/exceptions/MiscellaneousErrorException.java
new file mode 100644
index 0000000..2d3e0d7
--- /dev/null
+++
b/empire-db/src/main/java/org/apache/empire/exceptions/MiscellaneousErrorException.java
@@ -0,0 +1,34 @@
+/*
+ * 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.empire.exceptions;
+
+/**
+ * MiscellaneousErrorException
+ * @deprecated use UnspecifiedErrorException
+ */
+@Deprecated
+public final class MiscellaneousErrorException extends
UnspecifiedErrorException
+{
+ private static final long serialVersionUID = 1L;
+
+ public MiscellaneousErrorException(String errorMessage)
+ {
+ super(errorMessage);
+ }
+}