01: /*
02: * Copyright 2005 jWic group (http://www.jwic.de)
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: * de.jwic.base.ControlNotAvailableException
17: * Created on 24.03.2005
18: * $Id: ControlNotAvailableException.java,v 1.1 2006/01/16 08:30:40 lordsam Exp $
19: */
20: package de.jwic.base;
21:
22: /**
23: * Thrown by the runtime when a control can not be created. This may be
24: * the cause if a specified class can not be found. If the desired control
25: * is managed by a container, it might not be mapped.
26: *
27: * @author Florian Lippisch
28: * @version $Revision: 1.1 $
29: */
30: public class ControlNotAvailableException extends RuntimeException {
31:
32: /**
33: * Comment for <code>serialVersionUID</code>
34: */
35: private static final long serialVersionUID = 6009335074727417445L;
36:
37: /**
38: *
39: */
40: public ControlNotAvailableException() {
41: super ();
42: }
43:
44: /**
45: * @param message
46: */
47: public ControlNotAvailableException(String message) {
48: super (message);
49: // TODO Auto-generated constructor stub
50: }
51:
52: /**
53: * @param message
54: * @param cause
55: */
56: public ControlNotAvailableException(String message, Throwable cause) {
57: super (message, cause);
58: }
59:
60: /**
61: * @param cause
62: */
63: public ControlNotAvailableException(Throwable cause) {
64: super(cause);
65: }
66: }
|