package org.bygle.endponit.exception;
public class MalformedQueryException extends Exception {
/**
*
*/
private static final long serialVersionUID = -5709784657464058713L;
public MalformedQueryException() {
// TODO Auto-generated constructor stub
}
public MalformedQueryException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
public MalformedQueryException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
public MalformedQueryException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
public MalformedQueryException(String message, Throwable cause,
boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
// TODO Auto-generated constructor stub
}
}