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

com.baidu.haotianjing.core.utils.AssertUtils Maven / Gradle / Ivy

package com.baidu.haotianjing.core.utils;

import com.baidu.haotianjing.core.exception.RiskSdkException;

public class AssertUtils {

    public static void notBlank(String str, String msg) {
        if (null == str || str.length() <= 1) {
            throw new RiskSdkException(msg);
        }
    }

    public static void notNull(Object str, String msg) {
        if (null == str) {
            throw new RiskSdkException(msg);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy