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

io.logz.sawmill.exceptions.SawmillException Maven / Gradle / Ivy

The newest version!
package io.logz.sawmill.exceptions;

public class SawmillException extends RuntimeException {
    public SawmillException(String errorMsg) {
        super(errorMsg);
    }
    public SawmillException(String errorMsg, Exception e) {
        super(errorMsg, e);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy