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

io.carml.engine.template.TemplateException Maven / Gradle / Ivy

package io.carml.engine.template;

public class TemplateException extends RuntimeException {

  private static final long serialVersionUID = -851620300686694381L;

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

  public TemplateException(String message, Throwable throwable) {
    super(message, throwable);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy