
com.pippsford.stencil.source.StencilStorageException 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.source;
import com.pippsford.stencil.StencilException;
/**
* Exception thrown when a stencil cannot be retrieved from its storage.
*
* @author Simon Greatrix on 13/02/2021.
*/
public class StencilStorageException extends StencilException {
public StencilStorageException(String message) {
super(message);
}
public StencilStorageException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy