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

personthecat.catlib.exception.ModLoadException Maven / Gradle / Ivy

package personthecat.catlib.exception;

public class ModLoadException extends RuntimeException {

    public ModLoadException(final String msg) {
        super(msg);
    }

    public ModLoadException(final String msg, final Throwable cause) {
        super(msg, cause);
    }

    public ModLoadException(final Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy