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

tech.simter.template.TemplateEngineException Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package tech.simter.template;

/**
 * The Template Exception.
 */
public class TemplateEngineException extends RuntimeException {
  public TemplateEngineException() {
    super();
  }

  public TemplateEngineException(String message) {
    super(message);
  }

  public TemplateEngineException(Throwable cause) {
    super(cause);
  }

  public TemplateEngineException(String message, Throwable cause) {
    super(message, cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy