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

com.queryflow.common.QueryFlowException Maven / Gradle / Ivy

The newest version!
package com.queryflow.common;

public class QueryFlowException extends RuntimeException {

    public QueryFlowException() {
    }

    public QueryFlowException(String method, String message) {
        super(method + ": " + message);
    }

    public QueryFlowException(String message) {
        super(message);
    }

    public QueryFlowException(String message, Throwable cause) {
        super(message, cause);
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy