All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.xxdb.ServerExceptionUtils Maven / Gradle / Ivy

There is a newer version: 3.00.2.2
Show newest version
package com.xxdb;

public class ServerExceptionUtils {
    public static boolean isNotLogin(String exMsg) {
        return exMsg.indexOf("") >= 0;
    }

    public static boolean isNotLeader(String exMsg) {
        if (exMsg == null)
            return false;
        return exMsg.indexOf("") >= 0;
    }

    public static boolean isDataNodeNotAvailable(String exMsg) {
        if (exMsg == null)
            return false;
        return exMsg.indexOf("") >= 0;
    }

    public static String newLeader(String exMsg) {
        return exMsg.substring(11);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy