lithium.classloadertest.ClassLoaderException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of multiverse-test Show documentation
Show all versions of multiverse-test Show documentation
The Multiverse Test Framework for Java
The newest version!
package lithium.classloadertest;
public class ClassLoaderException extends RuntimeException {
private static final long serialVersionUID = 1L;
public ClassLoaderException(String msg) {
super(msg);
}
public ClassLoaderException(String msg, Throwable e) {
super(msg, e);
}
}