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

com.bandwidth.multifactorauth.exceptions.ForbiddenRequestException Maven / Gradle / Ivy

Go to download

The official client SDK for Bandwidth's Voice, Messaging, MFA, and WebRTC APIs

There is a newer version: 12.0.0
Show newest version
/*
 * 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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy