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

Examples of org.apache.stratos.adc.mgt.exception.NotSubscribedException


            throw new ADCException(message, e);
        }
        if (sub == null) {
            String msg = "Info request for not subscribed cartridge";
            log.error(msg);
            throw new NotSubscribedException("You have not subscribed for " + alias, alias);
        }

        log.info("Cluster domain : " + sub.getClusterDomain() + " cartridge: " + sub.getCartridge());
       
        CartridgeInfo cartridgeInfo = null;
View Full Code Here

TOP

Related Classes of org.apache.stratos.adc.mgt.exception.NotSubscribedException

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.