Remove AtomixRuntimeException 88/104688/3
authorRobert Varga <robert.varga@pantheon.tech>
Thu, 2 Mar 2023 08:02:02 +0000 (09:02 +0100)
committerRobert Varga <robert.varga@pantheon.tech>
Thu, 2 Mar 2023 08:21:26 +0000 (09:21 +0100)
This class is not really useful, inline its only benefit into its sole
user, AtomixIOException.

JIRA: CONTROLLER-2071
Change-Id: Ie574efd1acedc93a6b973c37370bdb6c95bd304d
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
third-party/atomix/utils/src/main/java/io/atomix/utils/AtomixIOException.java
third-party/atomix/utils/src/main/java/io/atomix/utils/AtomixRuntimeException.java [deleted file]

index c95f7b85797b721da3677b1ead423ef540336ce3..a59869cc7f997dfb18a250ac6543bfc14745d472 100644 (file)
@@ -18,7 +18,7 @@ package io.atomix.utils;
 /**
  * Atomix I/O exception.
  */
-public class AtomixIOException extends AtomixRuntimeException {
+public class AtomixIOException extends RuntimeException {
   public AtomixIOException() {
   }
 
@@ -27,7 +27,7 @@ public class AtomixIOException extends AtomixRuntimeException {
   }
 
   public AtomixIOException(String message, Object... args) {
-    super(message, args);
+    super(String.format(message, args));
   }
 
   public AtomixIOException(String message, Throwable cause) {
diff --git a/third-party/atomix/utils/src/main/java/io/atomix/utils/AtomixRuntimeException.java b/third-party/atomix/utils/src/main/java/io/atomix/utils/AtomixRuntimeException.java
deleted file mode 100644 (file)
index d3fc88d..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * Copyright 2017-present Open Networking Foundation
- *
- * 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 io.atomix.utils;
-
-/**
- * Atomix runtime exception.
- */
-public class AtomixRuntimeException extends RuntimeException {
-  public AtomixRuntimeException() {
-  }
-
-  public AtomixRuntimeException(String message) {
-    super(message);
-  }
-
-  public AtomixRuntimeException(String message, Object... args) {
-    super(String.format(message, args));
-  }
-
-  public AtomixRuntimeException(String message, Throwable cause) {
-    super(message, cause);
-  }
-
-  public AtomixRuntimeException(Throwable cause) {
-    super(cause);
-  }
-}