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

com.instamojo.wrapper.exception.HTTPException Maven / Gradle / Ivy

The newest version!
package com.instamojo.wrapper.exception;

public class HTTPException extends Exception {

    private int statusCode;

    private String jsonPayload;

    public HTTPException(int statusCode, String message, String jsonPayload) {
        super(message);
        this.statusCode = statusCode;
        this.jsonPayload = jsonPayload;
    }

    public int getStatusCode() {
        return statusCode;
    }

    public String getJsonPayload() {
        return jsonPayload;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy