1 16 package org.springframework.webflow.conversation; 17 18 import org.springframework.webflow.core.FlowException; 19 20 25 public abstract class ConversationException extends FlowException { 26 27 31 public ConversationException(String message) { 32 super(message); 33 } 34 35 40 public ConversationException(String message, Throwable cause) { 41 super(message, cause); 42 } 43 } | Popular Tags |