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

org.xml.sax.SAXException Maven / Gradle / Ivy

Go to download

OpenGL vector map library written in Java - running on Android, iOS, Desktop and within the browser.

There is a newer version: 0.20.0
Show newest version
package org.xml.sax;

import java.io.IOException;

public class SAXException extends IOException {

    /**
     *
     */
    private static final long serialVersionUID = 1L;

    public SAXException(String str) {
        super(str);
    }

    public SAXException(String str, Throwable throwable) {
        super(str);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy