![JAR search and dependency download from the Maven repository](/logo.png)
im.nll.data.diffbot.exception.ProcessException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of diffbot-java Show documentation
Show all versions of diffbot-java Show documentation
diffbot-java - diffbot api service for java.
package im.nll.data.diffbot.exception;
/**
* process exception.
*
* @author fivesmallq
* @version Revision: 1.0
* @date 16/6/28 下午6:11
*/
public class ProcessException extends RuntimeException {
public ProcessException(String message) {
super(message);
}
public ProcessException(String message, Throwable cause) {
super(message, cause);
}
public ProcessException() {
super();
}
public ProcessException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy