| Classes in this File | Line Coverage | Branch Coverage | Complexity | |||||||
| XML2XLSFatalException |
|
| 1.0;1 |
| 1 | /* |
|
| 2 | * XML2XLSFatalException.java |
|
| 3 | * |
|
| 4 | * Created on April 5, 2005, 7:24 PM |
|
| 5 | */ |
|
| 6 | ||
| 7 | package org.wiztools.xml2spreadsheet.exception; |
|
| 8 | ||
| 9 | /** |
|
| 10 | * |
|
| 11 | * @author subhash |
|
| 12 | */ |
|
| 13 | public class XML2XLSFatalException extends Exception{ |
|
| 14 | ||
| 15 | /** Creates a new instance of XML2XLSFatalException */ |
|
| 16 | public XML2XLSFatalException(String str) { |
|
| 17 | 0 | super(str); |
| 18 | 0 | } |
| 19 | ||
| 20 | public XML2XLSFatalException(String str, Throwable t) { |
|
| 21 | 0 | super(str, t); |
| 22 | 0 | } |
| 23 | ||
| 24 | } |