| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| XmlException |
|
| 1.0;1 |
| 1 | package org.kuali.rice.core.xml; | |
| 2 | ||
| 3 | public class XmlException extends RuntimeException { | |
| 4 | public XmlException(String message) { | |
| 5 | 0 | super(message); |
| 6 | 0 | } |
| 7 | ||
| 8 | public XmlException(Throwable t) { | |
| 9 | 0 | super(t); |
| 10 | 0 | } |
| 11 | ||
| 12 | public XmlException(String message, Throwable t) { | |
| 13 | 0 | super(message, t); |
| 14 | 0 | } |
| 15 | } |