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

org.watertemplate.interpreter.parser.exception.IdCouldNotBeResolvedException Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
package org.watertemplate.interpreter.parser.exception;

import org.watertemplate.exception.TemplateException;
import org.watertemplate.interpreter.parser.AbstractSyntaxTree;

public class IdCouldNotBeResolvedException extends TemplateException {
    public IdCouldNotBeResolvedException(final String fullId) {
        super("\"" + fullId + "\" could not be resolved.");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy