1 | /* |
2 | * Copyright 2005-2006 The RbUtils Project |
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 | |
18 | // $Id: RbUtilsRuntimeException.java,v 1.1 2006/11/07 03:08:45 moishi Exp $ |
19 | |
20 | package org.ktc.rbutils.api; |
21 | |
22 | /** |
23 | * Represents a runtime error condition within RbUtils. |
24 | * @since RbUtils 0.9.3.3 |
25 | * @version $Revision: 1.1 $ |
26 | * @author moishi |
27 | */ |
28 | public class RbUtilsRuntimeException extends RuntimeException { |
29 | /** |
30 | * Automaticly generated value for backward compatibility. |
31 | */ |
32 | private static final long serialVersionUID = -3319187359351395180L; |
33 | |
34 | /** |
35 | * Creates a new <code>RbUtilsRuntimeException</code> instance. |
36 | * @param message the detailled message. |
37 | */ |
38 | public RbUtilsRuntimeException(final String message) { |
39 | super(message); |
40 | } |
41 | |
42 | } |