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

com.github.azbh111.utils.java.exception.UnexpectedException Maven / Gradle / Ivy

package com.github.azbh111.utils.java.exception;

/**
 *
 * @author pyz
 * @date 2019/10/31 10:03 上午
 */
public class UnexpectedException extends RuntimeException {
    public UnexpectedException() {
    }

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy