Coverage details for edu.uci.ics.jung.exceptions.FatalException

LineHitsSource
1 /*
2 * Copyright (c) 2003, the JUNG Project and the Regents of the University
3 * of California
4 * All rights reserved.
5 *
6 * This software is open-source under the BSD license; see either
7 * "license.txt" or
8 * http://jung.sourceforge.net/license.txt for a description.
9 */
10 package edu.uci.ics.jung.exceptions;
11  
12 public class FatalException extends RuntimeException {
13     public FatalException(String s) {
147        super(s);
157    }
16  
17     public FatalException(String s, Throwable cause) {
182        super(s, cause);
192    }
20  
21 }

this report was generated by version 1.0.5 of jcoverage.
visit www.jcoverage.com for updates.

copyright © 2003, jcoverage ltd. all rights reserved.
Java is a trademark of Sun Microsystems, Inc. in the United States and other countries.