1 16 package org.springframework.webflow.definition.registry; 17 18 import org.springframework.webflow.core.FlowException; 19 20 27 public abstract class FlowDefinitionConstructionException extends FlowException { 28 29 32 private String flowId; 33 34 39 public FlowDefinitionConstructionException(String flowId, Throwable cause) { 40 super("An exception occured constructing the flow with id '" + flowId + "'", cause); 41 } 42 43 47 public String getFlowId() { 48 return flowId; 49 } 50 } | Popular Tags |