EMMA Coverage Report (generated Thu Nov 26 15:54:18 CST 2009)
[all classes][org.eclipse.pde.api.tools.internal.util]

COVERAGE SUMMARY FOR SOURCE FILE [TarException.java]

nameclass, %method, %block, %line, %
TarException.java100% (1/1)100% (3/3)100% (12/12)100% (6/6)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class TarException100% (1/1)100% (3/3)100% (12/12)100% (6/6)
TarException (): void 100% (1/1)100% (3/3)100% (2/2)
TarException (String): void 100% (1/1)100% (4/4)100% (2/2)
TarException (String, Throwable): void 100% (1/1)100% (5/5)100% (2/2)

1/*******************************************************************************
2 * Copyright (c) 2008 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
11/**
12 * Exception generated upon encountering corrupted tar files.
13 */
14package org.eclipse.pde.api.tools.internal.util;
15 
16public class TarException extends Exception {
17        /**
18         * Generated serial version UID for this class.
19         */
20        private static final long serialVersionUID = 2886671254518853528L;
21 
22    /**
23     * Constructs a TarException without a detail string.
24     */
25    public TarException() {
26            super();
27    }
28        
29        /**
30     * Constructs a TarException with the specified detail string.
31     *
32     * @param s the detail string
33     */
34    public TarException(String s) {
35            super(s);
36    }
37        
38    /**
39     * Constructs a TarException with the specified detail string.
40     *
41     * @param s the detail string
42     * @param cause the cause
43     */
44    public TarException(String s, Throwable cause) {
45            super(s, cause);
46    }
47}

[all classes][org.eclipse.pde.api.tools.internal.util]
EMMA 2.0.5312 EclEmma Fix 1 (C) Vladimir Roubtsov