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;
    private int statusCode;

    public IrisClientException(Throwable e) {
        super(e);
    }
    
    public IrisClientException(int statusCode, String errorCode, String description) {
        super(description);
        this.errorCode = errorCode;
        this.description = description;
        this.statusCode = statusCode;
    }

    public String getErrorCode() {
        return errorCode;
    }

    public String getDescription() {
        return description;
    }

    public int getStatusCode() { return statusCode; }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy