Package org.apache.stratos.adc.topology.mgt.exception

Examples of org.apache.stratos.adc.topology.mgt.exception.TopologyMgtException


    private void assertNull(String name, Object object) throws TopologyMgtException {
        if (object == null) {
            String message = name + " reference in the proxy admin config holder is null";
            log.error(message);
            throw new TopologyMgtException(message);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.stratos.adc.topology.mgt.exception.TopologyMgtException

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.