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

com.github.mustachejava.MustacheException Maven / Gradle / Ivy

There is a newer version: 0.9.14
Show newest version
package com.github.mustachejava;

/**
 * Generally there is nothing you can do if it fails.
 */
public class MustacheException extends RuntimeException {
  public MustacheException() {
    super();
  }

  public MustacheException(String s) {
    super(s);
  }

  public MustacheException(String s, Throwable throwable) {
    super(s, throwable);
  }

  public MustacheException(Throwable throwable) {
    super(throwable);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy