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;
}
}