Package com.nearinfinity.honeycomb.exceptions

Examples of com.nearinfinity.honeycomb.exceptions.StorageBackendCreationException


                    Object module = moduleCtor.newInstance(configuration.getAdapterOptions(adapter));
                    install((Module) module);
                } catch (ClassNotFoundException e) {
                    logger.error("The " + adapter.getName() + " adapter is" +
                            " configured, but could not be found on the classpath.");
                    throw new StorageBackendCreationException(adapter.getName(), e);
                } catch (Exception e) {
                    logger.error("Exception while attempting to reflect on the "
                            + adapter.getName() + " adapter.", e);
                    throw new StorageBackendCreationException(adapter.getName(), e);
                }
            }
        }
    }
View Full Code Here

TOP

Related Classes of com.nearinfinity.honeycomb.exceptions.StorageBackendCreationException

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.