| Line | Hits | Source |
|---|---|---|
| 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) { | |
| 14 | 7 | super(s); |
| 15 | 7 | } |
| 16 | ||
| 17 | public FatalException(String s, Throwable cause) { | |
| 18 | 2 | super(s, cause); |
| 19 | 2 | } |
| 20 | ||
| 21 | } |
|
this report was generated by version 1.0.5 of jcoverage. |
copyright © 2003, jcoverage ltd. all rights reserved. |