Package org.glassfish.enterprise.ha.store

Examples of org.glassfish.enterprise.ha.store.BackingStoreException


                            new Class[]{Properties.class});
                    factory = (BackingStoreFactory)
                            con.newInstance(regInfo.props);
                    factories.put(type, factory);
                } catch (NoSuchMethodException nme) {
                    throw new BackingStoreException(nme.getMessage(), nme.getCause());
                } catch (InvocationTargetException ite) {
                    throw new BackingStoreException(ite.getMessage(), ite.getCause());
                }
            } else {
                throw new BackingStoreException("Backing store for " +
                        "persistence-type " + type + " is not registered.");
            }
        }
        return factory;
    }
View Full Code Here

TOP

Related Classes of org.glassfish.enterprise.ha.store.BackingStoreException

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.