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

com.sun.msv.writer.SAXRuntimeException Maven / Gradle / Ivy

There is a newer version: 2.2.5.1
Show newest version
package com.sun.msv.writer;

import org.xml.sax.SAXException;

/**
 * This class is used to wrap SAXException by RuntimeException.
 * 
 * we can't throw Exception from visitor, so it has to be wrapped
 * by RuntimeException. This exception is catched outside of visitor
 * and nested exception is re-thrown.
 */
public class SAXRuntimeException extends RuntimeException {
    public final SAXException e;
    public SAXRuntimeException( SAXException e ) { this.e=e; }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy