EMMA Coverage Report (generated Mon Mar 20 21:34:30 PST 2006)
[all classes][com.moesol.generator.core]

COVERAGE SUMMARY FOR SOURCE FILE [ApplyException.java]

nameclass, %method, %block, %line, %
ApplyException.java100% (1/1)60%  (3/5)46%  (11/24)45%  (5/11)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class ApplyException100% (1/1)60%  (3/5)46%  (11/24)45%  (5/11)
ApplyException (Exception): void 0%   (0/1)0%   (0/6)0%   (0/3)
ApplyException (String, Exception): void 0%   (0/1)0%   (0/7)0%   (0/3)
ApplyException (String): void 100% (1/1)100% (4/4)100% (2/2)
getRootCause (): Exception 100% (1/1)100% (3/3)100% (1/1)
setRootCause (Exception): void 100% (1/1)100% (4/4)100% (2/2)

1/*
2 * $Id: ApplyException.java,v 1.3 2004/05/25 21:04:38 hastings Exp $
3 *
4 * (c) Copyright, Moebius Solutions, Inc., 2004
5 *
6 *                       All Rights Reserved
7 *
8 * This material may be reproduced by or for the U. S. Government
9 * pursuant to the copyright license under the clause at
10 * DFARS 252.227-7014 (OCT 2001).
11 */
12 
13package com.moesol.generator.core;
14 
15public class ApplyException extends Exception {
16    public ApplyException(Exception root_cause) {
17        this.root_cause = root_cause;
18    }
19    public ApplyException(String message) {
20        super(message);
21    }
22    public ApplyException(String message, Exception root_cause) {
23        super(message);
24        this.root_cause = root_cause;
25    }
26    public void setRootCause(Exception root_cause) {
27        this.root_cause = root_cause;
28    }
29    public Exception getRootCause() {
30        return root_cause;
31    }
32    
33    private Exception root_cause;
34}

[all classes][com.moesol.generator.core]
EMMA 2.0.5312 (C) Vladimir Roubtsov