org.firebirdsql.jdbc.FBResultSetNotUpdatableException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaybird Show documentation
Show all versions of jaybird Show documentation
JDBC Driver for the Firebird RDBMS
package org.firebirdsql.jdbc;
/**
* Exception is thrown when trying to modify the non-updatable result set.
*/
public class FBResultSetNotUpdatableException extends FBSQLException {
/**
* Create default instance of this class.
*/
public FBResultSetNotUpdatableException() {
this("Underlying ResultSet is not updatable.");
}
/**
* Create instance of this class for the specified message.
*
* @param message message to display.
*/
public FBResultSetNotUpdatableException(String message) {
super(message, SQL_STATE_GENERAL_ERROR);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy