This is an automated email from the ASF dual-hosted git repository. zhangliang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/shardingsphere.git
The following commit(s) were added to refs/heads/master by this push: new a51f8c978f8 Remove useless constructor of ClusterSQLException (#35118) a51f8c978f8 is described below commit a51f8c978f8023e59bd134db6ceb7a0a9711a3e9 Author: Liang Zhang <zhangli...@apache.org> AuthorDate: Mon Mar 31 18:28:06 2025 +0800 Remove useless constructor of ClusterSQLException (#35118) --- .../core/external/sql/type/kernel/category/ClusterSQLException.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/ClusterSQLException.java b/infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/ClusterSQLException.java index b4bf031d3e9..ee7def5351c 100644 --- a/infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/ClusterSQLException.java +++ b/infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/ClusterSQLException.java @@ -32,8 +32,4 @@ public abstract class ClusterSQLException extends KernelSQLException { protected ClusterSQLException(final SQLState sqlState, final int errorCode, final String reason, final Object... messageArgs) { super(sqlState, KERNEL_CODE, errorCode, reason, messageArgs); } - - protected ClusterSQLException(final SQLState sqlState, final int errorCode, final Exception cause, final String reason, final Object... messageArgs) { - super(sqlState, KERNEL_CODE, errorCode, cause, reason, messageArgs); - } }