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

io.spotnext.cms.exception.TemplateRenderException Maven / Gradle / Ivy

There is a newer version: 1.0.21-BETA-20190513
Show newest version
package io.spotnext.cms.exception;

/**
 * Exception that indicates that there was an error while rendering the
 * template.
 */
public class TemplateRenderException extends RuntimeException {
	private static final long serialVersionUID = 1L;

	/**
	 * @param message giving more information about the exception.
	 */
	public TemplateRenderException(final String message) {
		super(message);
	}

	/**
	 * @param message   giving more information about the exception.
	 * @param rootCause of the exception
	 */
	public TemplateRenderException(final String message, final Throwable rootCause) {
		super(message, rootCause);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy