All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jamesmurty.utils.XMLBuilderRuntimeException Maven / Gradle / Ivy

Go to download

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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy