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

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy