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

com.easilydo.sift.api.ApiException Maven / Gradle / Ivy

The newest version!
package com.easilydo.sift.api;

public class ApiException extends RuntimeException {
	private int code = 0;
	private String requestId;

	public ApiException(String message, int code) {
		super(message);
		this.code = code;
	}

	public ApiException(String message, int code, String requestId) {
		super(message);
		this.code = code;
		this.requestId = requestId;
	}

	public ApiException(String message, Throwable cause) {
		super(message, cause);
	}

	public int getCode() {
		return code;
	}

	public String getRequestId() {
		return requestId;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy