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 30 public class ContinuationUnmarshalException extends FlowExecutionRepositoryException { 31 32 37 public ContinuationUnmarshalException(String message, Throwable cause) { 38 super(message, cause); 39 } 40 } | Popular Tags |