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

io.brachu.johann.exception.JohannException Maven / Gradle / Ivy

package io.brachu.johann.exception;

public abstract class JohannException extends RuntimeException {

    private static final long serialVersionUID = 4744616195102846579L;

    JohannException(String message) {
        super(message);
    }

    JohannException(String message, Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy