boolean modelException = false;
if (e instanceof SQLException) {
SQLException sqlException = (SQLException) e;
DatabaseInterfaceProvider interfaceProvider = dynamicContent.getConnectionHandler().getInterfaceProvider();
modelException = interfaceProvider.getMessageParserInterface().isModelException(sqlException);
}
throw new DynamicContentLoadException(e, modelException);
} finally {
connectionHandler.getLoadMonitor().decrementLoaderCount();
ConnectionUtil.closeResultSet(resultSet);