1 16 package org.springframework.webflow.execution.repository; 17 18 26 public class NoSuchFlowExecutionException extends FlowExecutionAccessException { 27 28 34 public NoSuchFlowExecutionException(FlowExecutionKey flowExecutionKey, Exception cause) { 35 super(flowExecutionKey, "No flow execution could be found with key '" + flowExecutionKey 36 + "' -- perhaps this executing flow has ended or expired? " 37 + "This could happen if your users are relying on browser history " 38 + "(typically via the back button) that references ended flows.", cause); 39 } 40 } | Popular Tags |