com.renomad.minum.templating.TemplateParseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of minum Show documentation
Show all versions of minum Show documentation
A minimalist web framework
The newest version!
package com.renomad.minum.templating;
import java.io.Serial;
/**
* Thrown when failing to parse something in a template
*/
public final class TemplateParseException extends RuntimeException {
@Serial
private static final long serialVersionUID = -8784893791425360686L;
public TemplateParseException(String msg) {
super(msg);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy