1 16 package org.springframework.webflow.execution.repository; 17 18 25 public class FlowExecutionRestorationFailureException extends FlowExecutionAccessException { 26 27 33 public FlowExecutionRestorationFailureException(FlowExecutionKey flowExecutionKey, Exception cause) { 34 super(flowExecutionKey, "A problem occurred restoring the flow execution with key '" + flowExecutionKey + "'", 35 cause); 36 } 37 } | Popular Tags |