OSDN Git Service

55605cc4a009e9bc664609b1c40714447606d9ce
[rabbit-bts/RabbitBTS.git] / src / jp / sourceforge / rabbitBTS / exceptions / RabbitBTSException.java
1 /*
2    Copyright 2009 senju@users.sourceforge.jp
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
17 package jp.sourceforge.rabbitBTS.exceptions;
18
19 /**
20  * Rabbit BTS共通の例外
21  */
22 @SuppressWarnings("serial")
23 public class RabbitBTSException extends Exception {
24
25         /**
26          * 
27          */
28         public RabbitBTSException() {
29                 // TODO Auto-generated constructor stub
30         }
31
32         /**
33          * @param message
34          */
35         public RabbitBTSException(String message) {
36                 super(message);
37                 // TODO Auto-generated constructor stub
38         }
39
40         /**
41          * @param cause
42          */
43         public RabbitBTSException(Throwable cause) {
44                 super(cause);
45                 // TODO Auto-generated constructor stub
46         }
47
48         /**
49          * @param message
50          * @param cause
51          */
52         public RabbitBTSException(String message, Throwable cause) {
53                 super(message, cause);
54                 // TODO Auto-generated constructor stub
55         }
56
57 }