org.smallmind.license.WrappedException Maven / Gradle / Ivy
package org.smallmind.license;
public class WrappedException extends RuntimeException {
public WrappedException (Exception exception) {
super(exception);
}
public E convert (Class exceptionClass) {
return exceptionClass.cast(getCause());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy