| 1 | |
package org.kuali.rice.core.api.util.xml; |
| 2 | |
|
| 3 | |
import org.kuali.rice.core.api.CoreConstants; |
| 4 | |
|
| 5 | |
import javax.xml.ws.WebFault; |
| 6 | |
|
| 7 | |
@WebFault(name = "XmlFault", targetNamespace = CoreConstants.Namespaces.CORE_NAMESPACE_2_0) |
| 8 | |
public class XmlException extends RuntimeException { |
| 9 | |
|
| 10 | |
private static final long serialVersionUID = 5859837720372502809L; |
| 11 | |
|
| 12 | |
public XmlException(String message) { |
| 13 | 0 | super(message); |
| 14 | 0 | } |
| 15 | |
|
| 16 | |
public XmlException(Throwable t) { |
| 17 | 0 | super(t); |
| 18 | 0 | } |
| 19 | |
|
| 20 | |
public XmlException(String message, Throwable t) { |
| 21 | 0 | super(message, t); |
| 22 | 0 | } |
| 23 | |
} |