com.x5.template.TemplateNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chunk-templates Show documentation
Show all versions of chunk-templates Show documentation
Chunk Template Engine for Java
package com.x5.template;
public class TemplateNotFoundException extends RuntimeException
{
private String msg;
private Throwable cause;
public TemplateNotFoundException(String msg)
{
this.msg = msg;
}
public TemplateNotFoundException(String msg, Throwable cause)
{
this.msg = msg;
this.cause = cause;
}
public String getMessage()
{
return msg;
}
public Throwable getRootCause()
{
return cause;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy