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

com.github.xphsc.exception.UtilException Maven / Gradle / Ivy

There is a newer version: 1.2.3
Show newest version
package com.github.xphsc.exception;

import com.github.xphsc.util.StringUtil;

/**
 * Created by ${huipei.x} on 2017-6-1.
 */
public class UtilException extends RuntimeException {
    private static final long serialVersionUID = 8247610319171014183L;

    public UtilException(Throwable e) {
        super(ExceptionUtil.getMessage(e), e);
    }

    public UtilException(String message) {
        super(message);
    }

    public UtilException(String messageTemplate, Object... params) {
        super(StringUtil.format(messageTemplate, params));
    }

    public UtilException(String message, Throwable throwable) {
        super(message, throwable);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy