io.spotnext.cms.exception.TemplateRenderException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spot-cms-base Show documentation
Show all versions of spot-cms-base Show documentation
The spOt microservice framework.
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