org.klojang.templates.x.Messages Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of klojang-templates Show documentation
Show all versions of klojang-templates Show documentation
Zero-Logic Templates for Java Programmers
The newest version!
package org.klojang.templates.x;
public class Messages {
public static final String ERR_NO_SUCH_VARIABLE = "No such variable: \"${arg}\"";
public static final String ERR_NO_SUCH_TEMPLATE = "No such template: \"${arg}\"";
public static final String ERR_TEMPLATE_NAME_NULL = "Template name must not be null";
public static final String ERR_NO_SUCH_VARGROUP = "No such variable group: \"${0}\"";
public static final String ERR_BAD_NAME = "No such template or variable: \"${arg}\"";
private Messages() {}
}