com.foundationdb.sql.jdbc.core.PGBindException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fdb-sql-layer-jdbc Show documentation
Show all versions of fdb-sql-layer-jdbc Show documentation
The FoundationDB SQL Layer Driver for JDBC4
/*-------------------------------------------------------------------------
*
* Copyright (c) 2004-2011, PostgreSQL Global Development Group
*
*
*-------------------------------------------------------------------------
*/
package com.foundationdb.sql.jdbc.core;
import java.io.IOException;
public class PGBindException extends IOException {
private IOException _ioe;
public PGBindException(IOException ioe) {
_ioe = ioe;
}
public IOException getIOException() {
return _ioe;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy