EMMA Coverage Report (generated Fri Jun 19 09:16:10 CEST 2009)
[all classes][org.ktc.rbutils.api]

COVERAGE SUMMARY FOR SOURCE FILE [RbUtilsRuntimeException.java]

nameclass, %method, %block, %line, %
RbUtilsRuntimeException.java100% (1/1)100% (1/1)100% (4/4)100% (2/2)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class RbUtilsRuntimeException100% (1/1)100% (1/1)100% (4/4)100% (2/2)
RbUtilsRuntimeException (String): void 100% (1/1)100% (4/4)100% (2/2)

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 
20package 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 */
28public 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}

[all classes][org.ktc.rbutils.api]
EMMA 2.0.5312 (C) Vladimir Roubtsov