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

org.onetwo.dbm.exception.QueryException Maven / Gradle / Ivy

The newest version!
package org.onetwo.dbm.exception;


@SuppressWarnings("serial")
public class QueryException extends DbmException {

	private static final String DefaultMsg = "query error";
	
	public QueryException(){
		super(DefaultMsg);
	}
	
	public QueryException(String msg){
		super(msg);
	}
	
	public QueryException(Throwable cause){
		super(DefaultMsg, cause);
	}
	
	public QueryException(String msg, Throwable cause){
		super(msg, cause);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy