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

io.xlate.edi.internal.schema.StaEDISchemaReadException Maven / Gradle / Ivy

There is a newer version: 1.25.2
Show newest version
package io.xlate.edi.internal.schema;

import javax.xml.stream.Location;

class StaEDISchemaReadException extends RuntimeException {

    private static final long serialVersionUID = -5555580673080112522L;
    protected final transient Location location;

    public StaEDISchemaReadException(String message, Location location, Throwable cause) {
        super(message, cause);
        this.location = location;
    }

    public Location getLocation() {
        return location;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy