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

com.iohao.game.common.kit.adapter.HuExceptionUtil Maven / Gradle / Ivy

There is a newer version: 21.16
Show newest version
package com.iohao.game.common.kit.adapter;

/**
 * @author 渔民小镇
 * @date 2023-01-19
 */
class HuExceptionUtil {

    public static String getMessage(Throwable e) {
        if (null == e) {
            return HuStrUtil.NULL;
        }

        return HuStrUtil.format("{}: {}", e.getClass().getSimpleName(), e.getMessage());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy