1 16 package org.springframework.webflow.conversation; 17 18 25 public class NoSuchConversationException extends ConversationException { 26 27 30 private ConversationId conversationId; 31 32 36 public NoSuchConversationException(ConversationId conversationId) { 37 super("No conversation could be found with id '" + conversationId 38 + "' -- perhaps this conversation has ended? "); 39 this.conversationId = conversationId; 40 } 41 42 45 public ConversationId getConversationId() { 46 return conversationId; 47 } 48 } | Popular Tags |