Package org.exist.storage.btree

Examples of org.exist.storage.btree.DBException


                conn.close();
                if (LOG.isDebugEnabled())
                    LOG.debug("GML index: " + getDataDir() + "/" + db_file_name_prefix + " closed");
            }
        } catch (SQLException e) {
            throw new DBException(e.getMessage());
        } finally {
            conn = null;
        }
    }
View Full Code Here


                stmt.close();
                if (LOG.isDebugEnabled())
                    LOG.debug("GML index: " + getDataDir() + "/" + db_file_name_prefix + ". " + nodeCount + " nodes removed");
            }
        } catch (SQLException e) {
            throw new DBException(e.getMessage());
        }
    }
View Full Code Here

                cachedWriter = null;
            }
            taxonomyDirectory.close();
            directory.close();
        } catch (IOException e) {
            throw new DBException("Caught exception while closing lucene indexes: " + e.getMessage());
        }
    }
View Full Code Here

            final FileChannel fc = os.getChannel();
            dataGuide.write(fc, getBrokerPool().getSymbols());
            os.close();
        } catch (final IOException e) {
            LOG.error(e.getMessage(), e);
            throw new DBException("Error while writing " + dataFile.getAbsolutePath() +
                    ": " + e.getMessage());
        }
    }
View Full Code Here

TOP

Related Classes of org.exist.storage.btree.DBException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.