All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.renomad.minum.templating.TemplateParseException Maven / Gradle / Ivy

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