01: /*
02: * Copyright 2007 Outerthought bvba and Schaubroeck nv
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
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.outerj.daisy.workflow;
17:
18: import java.util.Map;
19: import java.util.HashMap;
20:
21: public class TimerNotFoundException extends WorkflowException {
22: private String id;
23:
24: public TimerNotFoundException(String id) {
25: if (id == null)
26: throw new IllegalArgumentException("Null argument: id");
27:
28: this .id = id;
29: }
30:
31: public TimerNotFoundException(Map state) {
32: if (!state.containsKey("id"))
33: throw new RuntimeException(
34: "exception creation problem: state is missing id");
35:
36: this .id = (String) state.get("id");
37: }
38:
39: public String getMessage() {
40: return "There is no timer with ID " + id;
41: }
42:
43: public Map<String, String> getState() {
44: Map<String, String> state = new HashMap<String, String>();
45: state.put("id", id);
46: return state;
47: }
48: }
|