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

com.telekom.m2m.cot.restsdk.util.CotSdkException Maven / Gradle / Ivy

package com.telekom.m2m.cot.restsdk.util;

/**
 * Cloud of Things SDK Exception wraps Exception in Runtime Exceptions.
 *
 * Created by Patrick Steinert on 02.02.16.
 */
public class CotSdkException extends RuntimeException {

    private int httpStatusCode = 0;

    public CotSdkException(String string) {
        super(string);
    }

    public CotSdkException(String string, Throwable t) {
        super(string, t);
    }

    public CotSdkException(int httpStatusCode, String string) {
        super(string + " HTTP status code:'" + httpStatusCode
                + "' (see https://http.cat/" + httpStatusCode + ")");
        this.httpStatusCode = httpStatusCode;
    }

    public int getHttpStatus() {
        return httpStatusCode;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy