EMMA Coverage Report (generated Tue Mar 14 21:50:42 EST 2006)
[all classes][org.farng.mp3]

COVERAGE SUMMARY FOR SOURCE FILE [TagException.java]

nameclass, %method, %block, %line, %
TagException.java100% (1/1)17%  (1/6)10%  (4/42)20%  (2/10)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class TagException100% (1/1)17%  (1/6)10%  (4/42)20%  (2/10)
TagException (): void 0%   (0/1)0%   (0/3)0%   (0/2)
TagException (String, Throwable): void 0%   (0/1)0%   (0/5)0%   (0/2)
TagException (Throwable): void 0%   (0/1)0%   (0/4)0%   (0/2)
readObject (ObjectInputStream): void 0%   (0/1)0%   (0/13)0%   (0/1)
writeObject (ObjectOutputStream): void 0%   (0/1)0%   (0/13)0%   (0/1)
TagException (String): void 100% (1/1)100% (4/4)100% (2/2)

1package org.farng.mp3;
2 
3import java.io.ObjectInputStream;
4import java.io.ObjectOutputStream;
5 
6/**
7 * This is the exception that is always generated by any class in these packages.
8 *
9 * @author Eric Farng
10 * @version $Revision: 1.1 $
11 */
12public class TagException extends Exception {
13 
14    /**
15     * Creates a new TagException object.
16     */
17    public TagException() {
18        super();
19    }
20 
21    /**
22     * Creates a new TagException object.
23     */
24    public TagException(final Throwable exception) {
25        super(exception);
26    }
27 
28    /**
29     * Creates a new TagException object.
30     *
31     * @param message the detail message.
32     */
33    public TagException(final String message) {
34        super(message);
35    }
36 
37    /**
38     * Creates a new TagException object.
39     */
40    public TagException(final String message, final Throwable exception) {
41        super(message, exception);
42    }
43 
44    private void writeObject(final ObjectOutputStream out) {
45        throw new UnsupportedOperationException("Cannot write to Output Stream: " + out.toString());
46    }
47 
48    private void readObject(final ObjectInputStream in) {
49        throw new UnsupportedOperationException("Cannot read from Input Stream: " + in.toString());
50    }
51}

[all classes][org.farng.mp3]
EMMA 2.0.5312 (C) Vladimir Roubtsov