Package com.foundationdb.server.error

Examples of com.foundationdb.server.error.NoClusterFileException


        LOG.info("Opening cluster file {}", clusterFile);
        try {
            db = isDefault ? fdb.open() : fdb.open(clusterFile);
        } catch (FDBException e) {
            if (e.getCode() == 1515) { // no_cluster_file_found
                throw new NoClusterFileException(clusterFile);
            }
            else if (e.getCode() == 1513) { // file_not_readable
                throw new ClusterFileNotReadableException(clusterFile);
            }
            else if (e.getCode() == 1516) { // cluster_file_too_large
View Full Code Here

TOP

Related Classes of com.foundationdb.server.error.NoClusterFileException

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.