KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > springframework > webflow > execution > repository > FlowExecutionRepositoryException


1 /*
2  * Copyright 2002-2006 the original author or authors.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package org.springframework.webflow.execution.repository;
17
18 import org.springframework.webflow.core.FlowException;
19
20 /**
21  * The root of the {@link FlowExecutionRepository} exception hierarchy.
22  * Indicates a problem occured either saving, restoring, or invalidating
23  * a managed flow execution.
24  *
25  * @author Erwin Vervaet
26  * @author Keith Donald
27  */

28 public abstract class FlowExecutionRepositoryException extends FlowException {
29
30     /**
31      * Creates a new flow execution repository exception.
32      * @param message a descriptive message
33      */

34     public FlowExecutionRepositoryException(String JavaDoc message) {
35         super(message);
36     }
37
38     /**
39      * Creates a new flow execution repository exception.
40      * @param message a descriptive message
41      * @param cause the root cause of the problem
42      */

43     public FlowExecutionRepositoryException(String JavaDoc message, Throwable JavaDoc cause) {
44         super(message, cause);
45     }
46 }
Popular Tags