EMMA Coverage Report (generated Mon Nov 26 19:18:24 CET 2007)
[all classes][net.sourceforge.retroweaver.runtime.java.lang]

COVERAGE SUMMARY FOR SOURCE FILE [TypeNotPresentException.java]

nameclass, %method, %block, %line, %
TypeNotPresentException.java0%   (0/1)0%   (0/2)0%   (0/18)0%   (0/4)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class TypeNotPresentException0%   (0/1)0%   (0/2)0%   (0/18)0%   (0/4)
TypeNotPresentException (String, Throwable): void 0%   (0/1)0%   (0/15)0%   (0/3)
typeName (): String 0%   (0/1)0%   (0/3)0%   (0/1)

1package net.sourceforge.retroweaver.runtime.java.lang;
2 
3public class TypeNotPresentException extends RuntimeException {
4 
5        private String typeName;
6 
7        public TypeNotPresentException(String typeName, Throwable cause) {
8                super("type: " + typeName, cause);
9                
10                this.typeName = typeName;
11        }
12 
13        public String typeName() {
14                return typeName;
15        }
16 
17}

[all classes][net.sourceforge.retroweaver.runtime.java.lang]
EMMA 2.0.7906 (unsupported private build) (C) Vladimir Roubtsov