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

com.adrninistrator.javacg.exceptions.JavaCGRuntimeException Maven / Gradle / Ivy

package com.adrninistrator.javacg.exceptions;

/**
 * @author adrninistrator
 * @date 2023/2/13
 * @description:
 */
public class JavaCGRuntimeException extends RuntimeException {
    public JavaCGRuntimeException() {
    }

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy