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

com.github.useful_solutions.tosamara_sdk.exception.APIResponseException Maven / Gradle / Ivy

There is a newer version: 1.5
Show newest version
package com.github.useful_solutions.tosamara_sdk.exception;

public class APIResponseException extends Exception {

    private static final String RESPONSE_BODY_IS_NULL = "Body of response is null!";
    private int code;

    public APIResponseException(int code) {
        super("Response code is " + code);
        this.code = code;
    }

    public APIResponseException() {
        super(RESPONSE_BODY_IS_NULL);
    }

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

    public int getCode() {
        return code;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy