1 16 package org.springframework.webflow.execution.repository.continuation; 17 18 import org.springframework.webflow.execution.FlowExecution; 19 import org.springframework.webflow.execution.repository.FlowExecutionRepositoryException; 20 21 27 public class ContinuationCreationException extends FlowExecutionRepositoryException { 28 29 32 private FlowExecution flowExecution; 33 34 40 public ContinuationCreationException(FlowExecution flowExecution, String message, Throwable cause) { 41 super(message, cause); 42 } 43 44 47 public FlowExecution getFlowExecution() { 48 return flowExecution; 49 } 50 } | Popular Tags |