Package org.apache.stratos.manager.exception

Examples of org.apache.stratos.manager.exception.DuplicateCartridgeAliasException


        }

        if (isAliasTaken) {
            String msg = "The alias " + alias + " is already taken. Please try again with a different alias.";
            log.error(msg);
            throw new DuplicateCartridgeAliasException(msg, cartridgeType, alias);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.stratos.manager.exception.DuplicateCartridgeAliasException

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.