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

com.jquicker.exception.ResultSetParserException Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package com.jquicker.exception;

public class ResultSetParserException extends RuntimeException {

	private static final long serialVersionUID = -3578455146935893919L;

	public ResultSetParserException() {
		super();
	}

	public ResultSetParserException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
		super(message, cause, enableSuppression, writableStackTrace);
	}

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

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

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

	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy