com.queryflow.common.QueryFlowException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of queryflow Show documentation
Show all versions of queryflow Show documentation
An ORM framework that can be developed as quickly as water flows!
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);
}
}