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

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

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


import java.io.Serial;

/**
 * @author 渔民小镇
 * @date 2023-01-19
 */
class HuUtilException extends RuntimeException {
    @Serial
    private static final long serialVersionUID = 8247610319171014183L;

    public HuUtilException(Throwable e) {
        super(HuExceptionUtil.getMessage(e), e);
    }

    public HuUtilException(String messageTemplate, Object... params) {
        super(HuStrUtil.format(messageTemplate, params));
    }

    public HuUtilException(Throwable throwable, String messageTemplate, Object... params) {
        super(HuStrUtil.format(messageTemplate, params), throwable);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy