EMMA Coverage Report (generated Wed Dec 16 17:19:59 CET 2009)
[all classes][org.sourceforge.xradar]

COVERAGE SUMMARY FOR SOURCE FILE [XRadarException.java]

nameclass, %method, %block, %line, %
XRadarException.java100% (1/1)33%  (1/3)31%  (4/13)33%  (2/6)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class XRadarException100% (1/1)33%  (1/3)31%  (4/13)33%  (2/6)
XRadarException (Exception): void 0%   (0/1)0%   (0/4)0%   (0/2)
XRadarException (String, Exception): void 0%   (0/1)0%   (0/5)0%   (0/2)
XRadarException (String): void 100% (1/1)100% (4/4)100% (2/2)

1/**
2 * BSD-style license; for more info see http://xradar.sourceforge.net/license.html
3 */
4package org.sourceforge.xradar;
5 
6/**
7 * <p>A simple exception class to wrap exception inside 
8 * XRadar.</p>
9 * FIXME: is this really the good way to do it ?
10 *
11 * @author rpelisse, belaran@gmail.com
12 *
13 */
14public class XRadarException extends Exception {
15 
16        private static final long serialVersionUID = 1L;
17 
18        /**
19         *        basic constructor with message
20         *        @param message, this associated error message
21         */
22        public XRadarException(String message) {
23                super(message);
24        }
25 
26        /**
27         * <p>Constructor with customized message.</p>
28         * @param message
29         * @param e
30         */
31        public XRadarException(String message, Exception e) {
32                super(message,e);
33        }
34 
35        /**
36         * <p>Constructor with only the original exception.</p>
37         * @param e
38         */
39        public XRadarException(Exception e) {
40                super(e);
41        }
42 
43}

[all classes][org.sourceforge.xradar]
EMMA 2.0.5312 (C) Vladimir Roubtsov