com.x5.template.EndOfSnippetException 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;
@SuppressWarnings("serial")
public class EndOfSnippetException extends Exception
{
private String line;
public EndOfSnippetException(String line)
{
this.line = line;
}
public String getRestOfLine()
{
return line;
}
}