EMMA Coverage Report (generated Mon Aug 23 17:21:34 CEST 2010)
[all classes][dmg.util]

COVERAGE SUMMARY FOR SOURCE FILE [CommandExitException.java]

nameclass, %method, %block, %line, %
CommandExitException.java0%   (0/1)0%   (0/5)0%   (0/24)0%   (0/9)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class CommandExitException0%   (0/1)0%   (0/5)0%   (0/24)0%   (0/9)
CommandExitException (): void 0%   (0/1)0%   (0/4)0%   (0/2)
CommandExitException (String): void 0%   (0/1)0%   (0/5)0%   (0/2)
CommandExitException (String, int): void 0%   (0/1)0%   (0/6)0%   (0/2)
CommandExitException (String, int, Throwable): void 0%   (0/1)0%   (0/6)0%   (0/2)
getExitCode (): int 0%   (0/1)0%   (0/3)0%   (0/1)

1package dmg.util ;
2 
3/**
4  *
5  *
6  * @author Patrick Fuhrmann
7  * @version 0.1, 15 Feb 1998
8  *
9  * The CommandExitException is rethrown by the
10  * CommandInterpreter whenever it is received.
11  */
12public class CommandExitException extends CommandException {
13    static final long serialVersionUID = 363676636532817904L;
14 
15    public CommandExitException()
16    {
17        this("");
18    }
19 
20    public CommandExitException(String msg)
21    {
22        this(msg, 0);
23    }
24 
25    public CommandExitException(String msg, int exitCode)
26    {
27        this(msg, exitCode, null);
28    }
29 
30    public CommandExitException(String msg, int exitCode, Throwable cause)
31    {
32        super(exitCode, msg, cause);
33    }
34 
35    public int getExitCode(){ return getErrorCode() ; }
36}

[all classes][dmg.util]
EMMA 2.0.5312 (C) Vladimir Roubtsov