com.bandwidth.multifactorauth.exceptions.ForbiddenRequestException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bandwidth-sdk Show documentation
Show all versions of bandwidth-sdk Show documentation
The official client SDK for Bandwidth's Voice, Messaging, MFA, and WebRTC APIs
/*
* BandwidthLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
package com.bandwidth.multifactorauth.exceptions;
import com.bandwidth.exceptions.ApiException;
import com.bandwidth.http.client.HttpContext;
import com.fasterxml.jackson.annotation.JsonGetter;
import com.fasterxml.jackson.annotation.JsonSetter;
/**
* This is a model class for ForbiddenRequestException type.
*/
public class ForbiddenRequestException
extends ApiException {
private static final long serialVersionUID = 41606914026773976L;
private String message;
/**
* Initialization constructor.
* @param reason The reason for throwing exception
* @param context The http context of the API exception
*/
public ForbiddenRequestException(String reason, HttpContext context) {
super(reason, context);
}
/**
* Getter for Message.
* The message containing the reason behind the request being forbidden
* @return Returns the String
*/
@JsonGetter("Message")
public String getMessage() {
return this.message;
}
/**
* Setter for Message.
* The message containing the reason behind the request being forbidden
* @param message Value for String
*/
@JsonSetter("Message")
private void setMessage(String message) {
this.message = message;
}
}