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

org.postgresql.jdbc.ClientLogicException Maven / Gradle / Ivy

There is a newer version: 5.0.0.9.pg
Show newest version
package io.mogdb.jdbc;

import java.sql.SQLException;

public class ClientLogicException extends SQLException {
	/**
     * The serial version UID for jvm serialization
     */
	private static final long serialVersionUID = 1148581951725038527L;
	
	private int errorCode;
	private String errorText;

	/* 
	 * Need to specify if the error is parsing error 
	 * we should not block bad queries to be sent to the server
	 * PgConnection.isValid is based on error that is not parsed correctly
	 */
	private boolean parsingError = false;
	
	/**
	 * @param errorCode - JNI lib error code
	 * @param errorMessage - JNI lib error message
	 */
	public ClientLogicException(int errorCode, String errorText) {
		super(errorText);
		this.errorCode = errorCode;
		this.errorText = errorText;
	}

    /**
	 * sets the parser error flag
	 * @param errorCode - JNI lib error code
	 * @param errorMessage - JNI lib error message
	 * @param parsingError - if the current issue is parsing issue
	 */
	public ClientLogicException(int errorCode, String errorText, boolean parsingError) {
		super(errorText);
		this.errorCode = errorCode;
		this.errorText = errorText;
		this.parsingError = parsingError;
	}

	/**
	 * @return error code
	 */
	public int getErrorCode() {
		return errorCode;
	}

	/**
	 * @return error mesage
	 */
	public String getErrorText() {
		return errorText;
	}

    /**
	 * @return check whether parsing error 
	 */
	public boolean isParsingError() {
		return parsingError;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy