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

net.intelie.liverig.witsml.WITSMLRawException Maven / Gradle / Ivy

The newest version!
package net.intelie.liverig.witsml;

public class WITSMLRawException extends WITSMLException {
    private final String suppMsg;
    private final String raw;

    public WITSMLRawException(short returnValue, String suppMsg) {
        this(returnValue, suppMsg, null);
    }

    public WITSMLRawException(short returnValue, String suppMsg, String raw) {
        super(returnValue, returnValue + ": " + suppMsg);
        this.suppMsg = suppMsg;
        this.raw = raw;
    }

    public String getSuppMsg() {
        return suppMsg;
    }

    public String getRaw() {
        return raw;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy