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

com.x5.template.EndOfSnippetException Maven / Gradle / Ivy

There is a newer version: 3.6.2
Show newest version
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;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy