Inceptum/launcher/src/main/java/io/gitlab/jfronny/inceptum/launcher/util/Unchecked.java

10 lines
228 B
Java

package io.gitlab.jfronny.inceptum.launcher.util;
public class Unchecked extends RuntimeException {
public final Exception exception;
public Unchecked(Exception exception) {
this.exception = exception;
}
}