| org.springframework.webflow.core.FlowException org.springframework.webflow.engine.builder.FlowArtifactLookupException
FlowArtifactLookupException | public class FlowArtifactLookupException extends FlowException (Code) | | A flow artifact lookup exception is thrown when an artifact (such as a flow, state,
action, etc.) required by the webflow system cannot be obtained.
Flow artifact lookup exceptions indicate unrecoverable problems with the flow
definition, e.g. a required action of a flow cannot be found. They're not used
to signal problems related to execution of a client request. A
FlowExecutionException is used for that.
See Also: org.springframework.webflow.execution.FlowExecutionException author: Keith Donald author: Erwin Vervaet |
FlowArtifactLookupException | public FlowArtifactLookupException(String artifactId, Class artifactType)(Code) | | Create a new flow artifact lookup exception.
Parameters: artifactId - the id of the artifact Parameters: artifactType - the expected artifact type |
FlowArtifactLookupException | public FlowArtifactLookupException(String artifactId, Class artifactType, Throwable cause)(Code) | | Create a new flow artifact lookup exception.
Parameters: artifactId - the id of the artifact Parameters: artifactType - the expected artifact type Parameters: cause - the underlying cause of this exception |
FlowArtifactLookupException | public FlowArtifactLookupException(String artifactId, Class artifactType, String message)(Code) | | Create a new flow artifact lookup exception.
Parameters: artifactId - the id of the artifact Parameters: artifactType - the expected artifact type Parameters: message - descriptive message |
FlowArtifactLookupException | public FlowArtifactLookupException(String artifactId, Class artifactType, String message, Throwable cause)(Code) | | Create a new flow artifact lookup exception.
Parameters: artifactId - the id of the artifact Parameters: artifactType - the expected artifact type Parameters: message - descriptive message Parameters: cause - the underlying cause of this exception |
getArtifactId | public String getArtifactId()(Code) | | Returns the id of the artifact that cannot be found.
|
getArtifactType | public Class getArtifactType()(Code) | | Returns the expected artifact type.
|
|
|