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

com.hb0730.commons.lang.exceptions.CommonsLangException Maven / Gradle / Ivy

There is a newer version: 2.1.2-RELEASE
Show newest version
package com.hb0730.commons.lang.exceptions;

/**
 * commons lang 异常
 *
 * @author bing_huang
 * @since 1.0.1
 */
public class CommonsLangException extends RuntimeException {
    public CommonsLangException() {
    }

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

    public CommonsLangException(String message, Throwable cause) {
        super(message, cause);
    }

    public CommonsLangException(Throwable cause) {
        super(cause);
    }

    public CommonsLangException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy