io.github.interestinglab.waterdrop.UserRuntimeException Maven / Gradle / Ivy
The newest version!
package io.github.interestinglab.waterdrop;
/**
*/
public class UserRuntimeException extends RuntimeException {
public UserRuntimeException() {
super();
}
public UserRuntimeException(String message) {
super(message);
}
public UserRuntimeException(String message, Throwable cause) {
super(message, cause);
}
public UserRuntimeException(Throwable cause) {
super(cause);
}
}