KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > beehive > netui > databinding > datagrid > api > exceptions > DataGridExtensionException


1 /*
2  * Copyright 2004 The Apache Software Foundation.
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  * $Header:$
17  */

18 package org.apache.beehive.netui.databinding.datagrid.api.exceptions;
19
20 /**
21  * Exception thrown when an error occurs while extending the data grid. This
22  * exception could result for many reasons all of which are related to configuring
23  * data grid features.
24  */

25 public class DataGridExtensionException
26         extends RuntimeException JavaDoc {
27
28     /**
29      * Default constructor
30      */

31     public DataGridExtensionException() {
32         super();
33     }
34
35     /**
36      * Constructor with cause message
37      *
38      * @param message
39      */

40     public DataGridExtensionException(String JavaDoc message) {
41         super(message);
42     }
43
44     /**
45      * Constructor with cause
46      *
47      * @param cause
48      */

49     public DataGridExtensionException(Throwable JavaDoc cause) {
50         super(cause);
51     }
52
53     /**
54      * Constructor with cause and message
55      */

56     public DataGridExtensionException(String JavaDoc message, Throwable JavaDoc cause) {
57         super(message, cause);
58     }
59 }
60
Popular Tags