1 16 package org.springframework.webflow.execution.repository; 17 18 24 public class PermissionDeniedFlowExecutionAccessException extends FlowExecutionAccessException { 25 26 32 public PermissionDeniedFlowExecutionAccessException(FlowExecutionKey flowExecutionKey, Exception cause) { 33 super(flowExecutionKey, "Unable to restore flow execution with key '" + flowExecutionKey 34 + "' -- permission denied.", cause); 35 } 36 } | Popular Tags |