Package org.osgi.service.cm

Examples of org.osgi.service.cm.ConfigurationException.initCause()


        try {
            deleted(pid);
            configurations.put(pid, new ClusteredConfiguration(toProperties(properties)));
        } catch (Exception e) {
            ConfigurationException configurationException = new ConfigurationException(null, "Unable to parse ActiveMQ configuration: " + e.getMessage());
            configurationException.initCause(e);
            throw configurationException;
        }
    }

    @Override
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.