uk.dioxic.mgenerate.common.exception.ResolveException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mgenerate-common Show documentation
Show all versions of mgenerate-common Show documentation
Common code for mgenerate4j
The newest version!
package uk.dioxic.mgenerate.common.exception;
import uk.dioxic.mgenerate.common.Resolvable;
public class ResolveException extends RuntimeException {
public ResolveException(String message) {
super(message);
}
public ResolveException(Resolvable resolvable) {
super("cannot resolve value for " + resolvable.getClass().getSimpleName());
}
public ResolveException(Resolvable resolvable, Exception e) {
super("cannot resolve value for " + resolvable.getClass().getSimpleName(), e);
}
public ResolveException() {
super();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy