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

com.authy.AuthyApiException Maven / Gradle / Ivy

package com.authy;

/**
 * 
 * @author Julian Camargo
 *
 */
public class AuthyApiException extends AuthyException {
	String status, uri, message;

	public AuthyApiException(String status, String uri, String message) {
		super(String.format("HTTP ERROR %s: %s \n %s", status, message, uri));
		this.uri = uri;
		this.status = status;
		this.message = message;
	}

	public AuthyApiException(String status, String uri) {
		super(String.format("HTTP ERROR %s: \n %s", status, uri));
		this.uri = uri;
		this.status = status;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy