OSDN Git Service

f1f503d1920879c8605003bbcb5d21559ceaa313
[rabbit-bts/RabbitBTS.git] / src / jp / sourceforge / rabbitBTS / exceptions / RabbitBTSRuntimeException.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  * RabbitBTS共通のランタイム例外
21  */
22 @SuppressWarnings("serial")
23 public class RabbitBTSRuntimeException extends RuntimeException {
24
25         /**
26          * 
27          */
28         public RabbitBTSRuntimeException() {
29                 // TODO Auto-generated constructor stub
30         }
31
32         /**
33          * @param message
34          */
35         public RabbitBTSRuntimeException(String message) {
36                 super(message);
37                 // TODO Auto-generated constructor stub
38         }
39
40         /**
41          * @param cause
42          */
43         public RabbitBTSRuntimeException(Throwable cause) {
44                 super(cause);
45                 // TODO Auto-generated constructor stub
46         }
47
48         /**
49          * @param message
50          * @param cause
51          */
52         public RabbitBTSRuntimeException(String message, Throwable cause) {
53                 super(message, cause);
54                 // TODO Auto-generated constructor stub
55         }
56
57 }