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

com.webcohesion.enunciate.EnunciateException Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
package com.webcohesion.enunciate;

/**
 * @author Ryan Heaton
 */
public class EnunciateException extends RuntimeException {

  public EnunciateException() {
  }

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

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy