![JAR search and dependency download from the Maven repository](/logo.png)
net.diversionmc.error.ResultException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of result Show documentation
Show all versions of result Show documentation
Diversion Network Result type.
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 - 2025 Weber Informatics LLC | Privacy Policy