OSDN Git Service

refactor
[bytom/bytom-java-sdk.git] / tx-signer / src / main / java / io / bytom / offline / exception / BytomException.java
diff --git a/tx-signer/src/main/java/io/bytom/offline/exception/BytomException.java b/tx-signer/src/main/java/io/bytom/offline/exception/BytomException.java
deleted file mode 100755 (executable)
index 40104ab..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-package io.bytom.offline.exception;\r
-\r
-/**\r
- * Base exception class for the Chain Core SDK.\r
- */\r
-public class BytomException extends Exception {\r
-    /**\r
-     * Default constructor.\r
-     */\r
-    public BytomException() {\r
-        super();\r
-    }\r
-\r
-    /**\r
-     * Initializes exception with its message attribute.\r
-     *\r
-     * @param message error message\r
-     */\r
-    public BytomException(String message) {\r
-        super(message);\r
-    }\r
-\r
-    /**\r
-     * Initializes a new exception while storing the original cause.\r
-     *\r
-     * @param message the error message\r
-     * @param cause   the cause of the exception\r
-     */\r
-    public BytomException(String message, Throwable cause) {\r
-        super(message, cause);\r
-    }\r
-}\r