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

com.bandwidth.iris.sdk.IrisClientException Maven / Gradle / Ivy

There is a newer version: 4.2.0
Show newest version
package com.bandwidth.iris.sdk;

public class IrisClientException extends Exception {
    private String errorCode;
    private String description;

    public IrisClientException(Throwable e) {
        super(e);
    }

    public IrisClientException(String message) {
        super(message);
    }

    public IrisClientException(String errorCode, String description) {
        super(description);
        this.errorCode = errorCode;
        this.description = description;
    }

    public String getErrorCode() {
        return errorCode;
    }

    public String getDescription() {
        return description;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy