EMMA Coverage Report (generated Sat Feb 02 18:43:55 MSK 2008) |
---|
[all classes][net.sourceforge.retroweaver.runtime.java.lang.annotation] |
name | class, % | method, % | block, % | line, % |
---|---|---|---|---|
AnnotationFormatError.java | 0% (0/1) | 0% (0/3) | 0% (0/19) | 0% (0/6) |
name | class, % | method, % | block, % | line, % |
---|---|---|---|---|
class AnnotationFormatError | 0% (0/1) | 0% (0/3) | 0% (0/19) | 0% (0/6) |
AnnotationFormatError (String): void | 0% (0/1) | 0% (0/4) | 0% (0/2) | |
AnnotationFormatError (String, Throwable): void | 0% (0/1) | 0% (0/5) | 0% (0/2) | |
AnnotationFormatError (Throwable): void | 0% (0/1) | 0% (0/10) | 0% (0/2) |
1 | package net.sourceforge.retroweaver.runtime.java.lang.annotation; |
2 | |
3 | /** |
4 | * A mirror of java.lang.annotation.AnnotationFormatError. |
5 | * |
6 | * @author Toby Reyelts |
7 | */ |
8 | public class AnnotationFormatError extends Error { |
9 | |
10 | public AnnotationFormatError(final String message) { |
11 | super(message); |
12 | } |
13 | |
14 | public AnnotationFormatError(final String message, final Throwable cause) { |
15 | super(message, cause); |
16 | } |
17 | |
18 | public AnnotationFormatError(final Throwable cause) { |
19 | super(cause == null ? null : cause.toString(), cause); |
20 | } |
21 | } |
[all classes][net.sourceforge.retroweaver.runtime.java.lang.annotation] |
EMMA 2.0.8001 (unsupported private build) (C) Vladimir Roubtsov |