1 16 package org.springframework.webflow.execution.repository; 17 18 import org.springframework.webflow.core.FlowException; 19 20 28 public abstract class FlowExecutionRepositoryException extends FlowException { 29 30 34 public FlowExecutionRepositoryException(String message) { 35 super(message); 36 } 37 38 43 public FlowExecutionRepositoryException(String message, Throwable cause) { 44 super(message, cause); 45 } 46 } | Popular Tags |