
com.pippsford.stencil.StencilException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stencil Show documentation
Show all versions of stencil Show documentation
Stencil templating system
The newest version!
package com.pippsford.stencil;
/**
* Root class for stencil related exceptions.
*
* @author Simon Greatrix on 13/02/2021.
*/
public class StencilException extends Exception {
protected StencilException(String message) {
super(message);
}
protected StencilException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy