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

com.hlag.rulemaker.exception.RuleMakerException Maven / Gradle / Ivy

package com.hlag.rulemaker.exception;

public class RuleMakerException extends RuntimeException {

    private RuleMakerException() {
    }

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

    public RuleMakerException(Throwable cause) {
        super(cause);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy