You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by su...@apache.org on 2022/12/06 15:44:36 UTC

[shardingsphere] branch master updated: Remove useless MismatchedProtocolAndDataSourceException (#22705)

This is an automated email from the ASF dual-hosted git repository.

sunnianjun 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 e872b3d2681 Remove useless MismatchedProtocolAndDataSourceException (#22705)
e872b3d2681 is described below

commit e872b3d26815a0847a0a7b35fe009394fc3a2d26
Author: Liang Zhang <zh...@apache.org>
AuthorDate: Tue Dec 6 23:44:28 2022 +0800

    Remove useless MismatchedProtocolAndDataSourceException (#22705)
---
 .../MismatchedProtocolAndDataSourceException.java  | 28 ----------------------
 1 file changed, 28 deletions(-)

diff --git a/infra/common/src/main/java/org/apache/shardingsphere/infra/exception/MismatchedProtocolAndDataSourceException.java b/infra/common/src/main/java/org/apache/shardingsphere/infra/exception/MismatchedProtocolAndDataSourceException.java
deleted file mode 100644
index 0bf4aad148f..00000000000
--- a/infra/common/src/main/java/org/apache/shardingsphere/infra/exception/MismatchedProtocolAndDataSourceException.java
+++ /dev/null
@@ -1,28 +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.infra.exception;
-
-import org.apache.shardingsphere.infra.util.exception.internal.ShardingSphereInternalException;
-
-/**
- * Mismatched protocol and data source exception.
- */
-public final class MismatchedProtocolAndDataSourceException extends ShardingSphereInternalException {
-    
-    private static final long serialVersionUID = -8179461124040274823L;
-}