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