Webiyo

This page was generated using Webiyo. See its source code and unit tests.

org/webiyo/xml/XmlException.java

package org.webiyo.xml;

import java.io.IOException;

public class XmlException extends IOException {

    // -Xlint: no serialVersionUID is okay.  We aren't supporting backward-compatible deserialization of exceptions.

    public XmlException(String message) {
        super(message);
    }

    public XmlException(String message, Throwable cause) {
        super(message);
        initCause(cause);
    }

}
SourceForge