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

com.ctc.wstx.exc.WstxParsingException Maven / Gradle / Ivy

There is a newer version: 0.41.11
Show newest version
package com.ctc.wstx.exc;

import javax.xml.stream.Location;

/**
 * Intermediate base class for reporting actual Wstx parsing problems.
 */
@SuppressWarnings("serial")
public class WstxParsingException
    extends WstxException
{
    public WstxParsingException(String msg, Location loc) {
        super(msg, loc);
    }

    // !!! 13-Sep-2008, tatus: Only needed for DOMWrapping reader, for now
    public WstxParsingException(String msg) { super(msg); }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy