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 b49c6b42729 Merge shardingsphere-infra-exception and 
shardingsphere-infra-exception-core (#36390)
b49c6b42729 is described below

commit b49c6b427297610f393578f22ee52cc9acb4be5c
Author: Liang Zhang <[email protected]>
AuthorDate: Sat Aug 23 11:12:03 2025 +0800

    Merge shardingsphere-infra-exception and 
shardingsphere-infra-exception-core (#36390)
    
    * Merge shardingsphere-infra-exception and 
shardingsphere-infra-exception-core
    
    * Merge shardingsphere-infra-exception and 
shardingsphere-infra-exception-core
---
 infra/exception/core/pom.xml                       | 36 ----------------------
 infra/exception/pom.xml                            | 11 ++++---
 .../core/ShardingSpherePreconditions.java          |  0
 .../external/ShardingSphereExternalException.java  |  0
 .../server/ShardingSphereServerException.java      |  0
 .../external/sql/ShardingSphereSQLException.java   |  0
 .../sql/identifier/SQLExceptionIdentifier.java     |  0
 .../core/external/sql/sqlstate/SQLState.java       |  0
 .../core/external/sql/sqlstate/XOpenSQLState.java  |  0
 .../sql/type/feature/FeatureSQLException.java      |  0
 .../sql/type/generic/GenericSQLException.java      |  0
 .../sql/type/kernel/KernelSQLException.java        |  0
 .../type/kernel/category/ClusterSQLException.java  |  0
 .../kernel/category/ConnectionSQLException.java    |  0
 .../sql/type/kernel/category/DataSQLException.java |  0
 .../sql/type/kernel/category/LockSQLException.java |  0
 .../type/kernel/category/MetaDataSQLException.java |  0
 .../type/kernel/category/PipelineSQLException.java |  0
 .../type/kernel/category/SyntaxSQLException.java   |  0
 .../kernel/category/TransactionSQLException.java   |  0
 .../sql/type/wrapper/SQLWrapperException.java      |  0
 .../core/external/sql/vendor/VendorError.java      |  0
 .../internal/ShardingSphereInternalException.java  |  0
 .../core/ShardingSpherePreconditionsTest.java      |  0
 .../ShardingSphereExternalExceptionTest.java       |  0
 .../ShardingSphereFixtureExternalException.java    |  0
 .../server/ShardingSphereServerExceptionTest.java  |  0
 .../ShardingSphereFixtureServerException.java      |  0
 .../sql/ShardingSphereSQLExceptionTest.java        |  0
 .../sql/identifier/SQLExceptionIdentifierTest.java |  0
 .../sql/type/feature/FeatureSQLExceptionTest.java  |  0
 .../sql/type/kernel/KernelSQLExceptionTest.java    |  0
 .../sql/type/wrapper/SQLWrapperExceptionTest.java  |  0
 .../ShardingSphereInternalExceptionTest.java       |  0
 .../ShardingSphereFixtureInternalException.java    |  0
 infra/expr/type/espresso/pom.xml                   |  2 +-
 infra/spi/pom.xml                                  |  2 +-
 37 files changed, 9 insertions(+), 42 deletions(-)

diff --git a/infra/exception/core/pom.xml b/infra/exception/core/pom.xml
deleted file mode 100644
index 6525627d5cd..00000000000
--- a/infra/exception/core/pom.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-  ~ 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.
-  -->
-
-<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.apache.shardingsphere</groupId>
-        <artifactId>shardingsphere-infra-exception</artifactId>
-        <version>5.5.3-SNAPSHOT</version>
-    </parent>
-    <artifactId>shardingsphere-infra-exception-core</artifactId>
-    <name>${project.artifactId}</name>
-    
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.shardingsphere</groupId>
-            <artifactId>shardingsphere-infra-annotation</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-    </dependencies>
-</project>
diff --git a/infra/exception/pom.xml b/infra/exception/pom.xml
index 2ebbfa80b4f..1a38fab1b4a 100644
--- a/infra/exception/pom.xml
+++ b/infra/exception/pom.xml
@@ -24,10 +24,13 @@
         <version>5.5.3-SNAPSHOT</version>
     </parent>
     <artifactId>shardingsphere-infra-exception</artifactId>
-    <packaging>pom</packaging>
     <name>${project.artifactId}</name>
     
-    <modules>
-        <module>core</module>
-    </modules>
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.shardingsphere</groupId>
+            <artifactId>shardingsphere-infra-annotation</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+    </dependencies>
 </project>
diff --git 
a/infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/ShardingSpherePreconditions.java
 
b/infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/ShardingSpherePreconditions.java
similarity index 100%
rename from 
infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/ShardingSpherePreconditions.java
rename to 
infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/ShardingSpherePreconditions.java
diff --git 
a/infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/ShardingSphereExternalException.java
 
b/infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/ShardingSphereExternalException.java
similarity index 100%
rename from 
infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/ShardingSphereExternalException.java
rename to 
infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/ShardingSphereExternalException.java
diff --git 
a/infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/server/ShardingSphereServerException.java
 
b/infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/server/ShardingSphereServerException.java
similarity index 100%
rename from 
infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/server/ShardingSphereServerException.java
rename to 
infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/server/ShardingSphereServerException.java
diff --git 
a/infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/ShardingSphereSQLException.java
 
b/infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/ShardingSphereSQLException.java
similarity index 100%
rename from 
infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/ShardingSphereSQLException.java
rename to 
infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/ShardingSphereSQLException.java
diff --git 
a/infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/identifier/SQLExceptionIdentifier.java
 
b/infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/identifier/SQLExceptionIdentifier.java
similarity index 100%
rename from 
infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/identifier/SQLExceptionIdentifier.java
rename to 
infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/identifier/SQLExceptionIdentifier.java
diff --git 
a/infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/sqlstate/SQLState.java
 
b/infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/sqlstate/SQLState.java
similarity index 100%
rename from 
infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/sqlstate/SQLState.java
rename to 
infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/sqlstate/SQLState.java
diff --git 
a/infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/sqlstate/XOpenSQLState.java
 
b/infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/sqlstate/XOpenSQLState.java
similarity index 100%
rename from 
infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/sqlstate/XOpenSQLState.java
rename to 
infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/sqlstate/XOpenSQLState.java
diff --git 
a/infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/feature/FeatureSQLException.java
 
b/infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/feature/FeatureSQLException.java
similarity index 100%
rename from 
infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/feature/FeatureSQLException.java
rename to 
infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/feature/FeatureSQLException.java
diff --git 
a/infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/generic/GenericSQLException.java
 
b/infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/generic/GenericSQLException.java
similarity index 100%
rename from 
infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/generic/GenericSQLException.java
rename to 
infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/generic/GenericSQLException.java
diff --git 
a/infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/KernelSQLException.java
 
b/infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/KernelSQLException.java
similarity index 100%
rename from 
infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/KernelSQLException.java
rename to 
infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/KernelSQLException.java
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/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/ClusterSQLException.java
similarity index 100%
rename from 
infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/ClusterSQLException.java
rename to 
infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/ClusterSQLException.java
diff --git 
a/infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/ConnectionSQLException.java
 
b/infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/ConnectionSQLException.java
similarity index 100%
rename from 
infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/ConnectionSQLException.java
rename to 
infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/ConnectionSQLException.java
diff --git 
a/infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/DataSQLException.java
 
b/infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/DataSQLException.java
similarity index 100%
rename from 
infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/DataSQLException.java
rename to 
infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/DataSQLException.java
diff --git 
a/infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/LockSQLException.java
 
b/infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/LockSQLException.java
similarity index 100%
rename from 
infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/LockSQLException.java
rename to 
infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/LockSQLException.java
diff --git 
a/infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/MetaDataSQLException.java
 
b/infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/MetaDataSQLException.java
similarity index 100%
rename from 
infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/MetaDataSQLException.java
rename to 
infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/MetaDataSQLException.java
diff --git 
a/infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/PipelineSQLException.java
 
b/infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/PipelineSQLException.java
similarity index 100%
rename from 
infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/PipelineSQLException.java
rename to 
infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/PipelineSQLException.java
diff --git 
a/infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/SyntaxSQLException.java
 
b/infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/SyntaxSQLException.java
similarity index 100%
rename from 
infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/SyntaxSQLException.java
rename to 
infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/SyntaxSQLException.java
diff --git 
a/infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/TransactionSQLException.java
 
b/infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/TransactionSQLException.java
similarity index 100%
rename from 
infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/TransactionSQLException.java
rename to 
infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/category/TransactionSQLException.java
diff --git 
a/infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/wrapper/SQLWrapperException.java
 
b/infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/wrapper/SQLWrapperException.java
similarity index 100%
rename from 
infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/wrapper/SQLWrapperException.java
rename to 
infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/wrapper/SQLWrapperException.java
diff --git 
a/infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/vendor/VendorError.java
 
b/infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/vendor/VendorError.java
similarity index 100%
rename from 
infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/vendor/VendorError.java
rename to 
infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/external/sql/vendor/VendorError.java
diff --git 
a/infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/internal/ShardingSphereInternalException.java
 
b/infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/internal/ShardingSphereInternalException.java
similarity index 100%
rename from 
infra/exception/core/src/main/java/org/apache/shardingsphere/infra/exception/core/internal/ShardingSphereInternalException.java
rename to 
infra/exception/src/main/java/org/apache/shardingsphere/infra/exception/core/internal/ShardingSphereInternalException.java
diff --git 
a/infra/exception/core/src/test/java/org/apache/shardingsphere/infra/exception/core/ShardingSpherePreconditionsTest.java
 
b/infra/exception/src/test/java/org/apache/shardingsphere/infra/exception/core/ShardingSpherePreconditionsTest.java
similarity index 100%
rename from 
infra/exception/core/src/test/java/org/apache/shardingsphere/infra/exception/core/ShardingSpherePreconditionsTest.java
rename to 
infra/exception/src/test/java/org/apache/shardingsphere/infra/exception/core/ShardingSpherePreconditionsTest.java
diff --git 
a/infra/exception/core/src/test/java/org/apache/shardingsphere/infra/exception/core/external/ShardingSphereExternalExceptionTest.java
 
b/infra/exception/src/test/java/org/apache/shardingsphere/infra/exception/core/external/ShardingSphereExternalExceptionTest.java
similarity index 100%
rename from 
infra/exception/core/src/test/java/org/apache/shardingsphere/infra/exception/core/external/ShardingSphereExternalExceptionTest.java
rename to 
infra/exception/src/test/java/org/apache/shardingsphere/infra/exception/core/external/ShardingSphereExternalExceptionTest.java
diff --git 
a/infra/exception/core/src/test/java/org/apache/shardingsphere/infra/exception/core/external/fixture/ShardingSphereFixtureExternalException.java
 
b/infra/exception/src/test/java/org/apache/shardingsphere/infra/exception/core/external/fixture/ShardingSphereFixtureExternalException.java
similarity index 100%
rename from 
infra/exception/core/src/test/java/org/apache/shardingsphere/infra/exception/core/external/fixture/ShardingSphereFixtureExternalException.java
rename to 
infra/exception/src/test/java/org/apache/shardingsphere/infra/exception/core/external/fixture/ShardingSphereFixtureExternalException.java
diff --git 
a/infra/exception/core/src/test/java/org/apache/shardingsphere/infra/exception/core/external/server/ShardingSphereServerExceptionTest.java
 
b/infra/exception/src/test/java/org/apache/shardingsphere/infra/exception/core/external/server/ShardingSphereServerExceptionTest.java
similarity index 100%
rename from 
infra/exception/core/src/test/java/org/apache/shardingsphere/infra/exception/core/external/server/ShardingSphereServerExceptionTest.java
rename to 
infra/exception/src/test/java/org/apache/shardingsphere/infra/exception/core/external/server/ShardingSphereServerExceptionTest.java
diff --git 
a/infra/exception/core/src/test/java/org/apache/shardingsphere/infra/exception/core/external/server/fixture/ShardingSphereFixtureServerException.java
 
b/infra/exception/src/test/java/org/apache/shardingsphere/infra/exception/core/external/server/fixture/ShardingSphereFixtureServerException.java
similarity index 100%
rename from 
infra/exception/core/src/test/java/org/apache/shardingsphere/infra/exception/core/external/server/fixture/ShardingSphereFixtureServerException.java
rename to 
infra/exception/src/test/java/org/apache/shardingsphere/infra/exception/core/external/server/fixture/ShardingSphereFixtureServerException.java
diff --git 
a/infra/exception/core/src/test/java/org/apache/shardingsphere/infra/exception/core/external/sql/ShardingSphereSQLExceptionTest.java
 
b/infra/exception/src/test/java/org/apache/shardingsphere/infra/exception/core/external/sql/ShardingSphereSQLExceptionTest.java
similarity index 100%
rename from 
infra/exception/core/src/test/java/org/apache/shardingsphere/infra/exception/core/external/sql/ShardingSphereSQLExceptionTest.java
rename to 
infra/exception/src/test/java/org/apache/shardingsphere/infra/exception/core/external/sql/ShardingSphereSQLExceptionTest.java
diff --git 
a/infra/exception/core/src/test/java/org/apache/shardingsphere/infra/exception/core/external/sql/identifier/SQLExceptionIdentifierTest.java
 
b/infra/exception/src/test/java/org/apache/shardingsphere/infra/exception/core/external/sql/identifier/SQLExceptionIdentifierTest.java
similarity index 100%
rename from 
infra/exception/core/src/test/java/org/apache/shardingsphere/infra/exception/core/external/sql/identifier/SQLExceptionIdentifierTest.java
rename to 
infra/exception/src/test/java/org/apache/shardingsphere/infra/exception/core/external/sql/identifier/SQLExceptionIdentifierTest.java
diff --git 
a/infra/exception/core/src/test/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/feature/FeatureSQLExceptionTest.java
 
b/infra/exception/src/test/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/feature/FeatureSQLExceptionTest.java
similarity index 100%
rename from 
infra/exception/core/src/test/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/feature/FeatureSQLExceptionTest.java
rename to 
infra/exception/src/test/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/feature/FeatureSQLExceptionTest.java
diff --git 
a/infra/exception/core/src/test/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/KernelSQLExceptionTest.java
 
b/infra/exception/src/test/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/KernelSQLExceptionTest.java
similarity index 100%
rename from 
infra/exception/core/src/test/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/KernelSQLExceptionTest.java
rename to 
infra/exception/src/test/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/kernel/KernelSQLExceptionTest.java
diff --git 
a/infra/exception/core/src/test/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/wrapper/SQLWrapperExceptionTest.java
 
b/infra/exception/src/test/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/wrapper/SQLWrapperExceptionTest.java
similarity index 100%
rename from 
infra/exception/core/src/test/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/wrapper/SQLWrapperExceptionTest.java
rename to 
infra/exception/src/test/java/org/apache/shardingsphere/infra/exception/core/external/sql/type/wrapper/SQLWrapperExceptionTest.java
diff --git 
a/infra/exception/core/src/test/java/org/apache/shardingsphere/infra/exception/core/internal/ShardingSphereInternalExceptionTest.java
 
b/infra/exception/src/test/java/org/apache/shardingsphere/infra/exception/core/internal/ShardingSphereInternalExceptionTest.java
similarity index 100%
rename from 
infra/exception/core/src/test/java/org/apache/shardingsphere/infra/exception/core/internal/ShardingSphereInternalExceptionTest.java
rename to 
infra/exception/src/test/java/org/apache/shardingsphere/infra/exception/core/internal/ShardingSphereInternalExceptionTest.java
diff --git 
a/infra/exception/core/src/test/java/org/apache/shardingsphere/infra/exception/core/internal/fixture/ShardingSphereFixtureInternalException.java
 
b/infra/exception/src/test/java/org/apache/shardingsphere/infra/exception/core/internal/fixture/ShardingSphereFixtureInternalException.java
similarity index 100%
rename from 
infra/exception/core/src/test/java/org/apache/shardingsphere/infra/exception/core/internal/fixture/ShardingSphereFixtureInternalException.java
rename to 
infra/exception/src/test/java/org/apache/shardingsphere/infra/exception/core/internal/fixture/ShardingSphereFixtureInternalException.java
diff --git a/infra/expr/type/espresso/pom.xml b/infra/expr/type/espresso/pom.xml
index 23a408ba065..246989776de 100644
--- a/infra/expr/type/espresso/pom.xml
+++ b/infra/expr/type/espresso/pom.xml
@@ -34,7 +34,7 @@
         </dependency>
         <dependency>
             <groupId>org.apache.shardingsphere</groupId>
-            <artifactId>shardingsphere-infra-exception-core</artifactId>
+            <artifactId>shardingsphere-infra-exception</artifactId>
             <version>${project.version}</version>
         </dependency>
         
diff --git a/infra/spi/pom.xml b/infra/spi/pom.xml
index b37a3e5f7ea..85bdd636b20 100644
--- a/infra/spi/pom.xml
+++ b/infra/spi/pom.xml
@@ -29,7 +29,7 @@
     <dependencies>
         <dependency>
             <groupId>org.apache.shardingsphere</groupId>
-            <artifactId>shardingsphere-infra-exception-core</artifactId>
+            <artifactId>shardingsphere-infra-exception</artifactId>
             <version>${project.version}</version>
         </dependency>
     </dependencies>

Reply via email to