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

net.diversionmc.error.ResultException Maven / Gradle / Ivy

There is a newer version: 1.29.2
Show newest version
package net.diversionmc.error;

final class ResultException extends RuntimeException {
    private final Exception exception;

    public ResultException(Exception exception) {
        super(exception);
        this.exception = exception;
    }
    
    public Exception exception() {
        return exception;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy