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 8453eaf098d Remove MaskSQLException (#30567) 8453eaf098d is described below commit 8453eaf098d91a7bb7f0cee8c933e37f901a960d Author: Liang Zhang <zhangli...@apache.org> AuthorDate: Wed Mar 20 21:35:11 2024 +0800 Remove MaskSQLException (#30567) --- .../mask/exception/MaskSQLException.java | 35 ---------------------- 1 file changed, 35 deletions(-) diff --git a/features/mask/core/src/main/java/org/apache/shardingsphere/mask/exception/MaskSQLException.java b/features/mask/core/src/main/java/org/apache/shardingsphere/mask/exception/MaskSQLException.java deleted file mode 100644 index c72ad9d100d..00000000000 --- a/features/mask/core/src/main/java/org/apache/shardingsphere/mask/exception/MaskSQLException.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * 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.shardingsphere.mask.exception; - -import org.apache.shardingsphere.infra.exception.core.external.sql.sqlstate.SQLState; -import org.apache.shardingsphere.infra.exception.core.external.sql.type.feature.FeatureSQLException; - -/** - * Mask SQL exception. - */ -public abstract class MaskSQLException extends FeatureSQLException { - - private static final long serialVersionUID = 7788917372368241543L; - - private static final int FEATURE_CODE = 9; - - protected MaskSQLException(final SQLState sqlState, final int errorCode, final String reason, final Object... messageArgs) { - super(sqlState, FEATURE_CODE, errorCode, reason, messageArgs); - } -}