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

io.github.davidchild.bitter.exception.RefException Maven / Gradle / Ivy

package io.github.davidchild.bitter.exception;

public class RefException extends RuntimeException {
    RefException() {}

    public RefException(String msg) {
        super(msg);
    }

    public RefException(String msg, Throwable cause) {
        super(msg, cause);
    }

    RefException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy