
com.webcohesion.enunciate.EnunciateException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enunciate-core Show documentation
Show all versions of enunciate-core Show documentation
Enunciate core classes that are needed at Enunciate build-time.
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