com.jamesmurty.utils.XMLBuilderRuntimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-xmlbuilder Show documentation
Show all versions of java-xmlbuilder Show documentation
XML Builder is a utility that creates simple XML documents using relatively sparse Java code
The newest version!
package com.jamesmurty.utils;
/**
* A runtime exception class used in {@link XMLBuilder2} to wrap any exceptions
* that would otherwise lead to checked exceptions in the interface.
*
* @author jmurty
*
*/
public class XMLBuilderRuntimeException extends RuntimeException {
private static final long serialVersionUID = -635323496745601589L;
/**
* @param exception
* cause exception to be wrapped
*/
public XMLBuilderRuntimeException(Exception exception) {
super(exception);
}
}