io.xlate.edi.internal.schema.StaEDISchemaReadException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of staedi Show documentation
Show all versions of staedi Show documentation
Streaming API for EDI for Java
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;
}
}