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

com.pippsford.stencil.StencilException Maven / Gradle / Ivy

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