Package com.github.overengineer.scope.conversation.exceptions

Examples of com.github.overengineer.scope.conversation.exceptions.ConversationIdException


    }

    protected void handleInvalidId(String conversationName, String conversationId) throws ConversationIdException {
        String idExceptionMessage = "The following conversation name and id pair did not return an active ConversationContext:  (name: " + conversationName + "|id:  " + conversationId + ").  This is likely due to the conversation having ended or expired.";
        LOG.warn(idExceptionMessage);
        throw new ConversationIdException(idExceptionMessage, conversationName, conversationId);
    }
View Full Code Here

TOP

Related Classes of com.github.overengineer.scope.conversation.exceptions.ConversationIdException

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.