com.amazonaws.services.ssooidc.model.AccessDeniedException Maven / Gradle / Ivy
/*
* Copyright 2015-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.ssooidc.model;
import javax.annotation.Generated;
/**
*
* You do not have sufficient access to perform this action.
*
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class AccessDeniedException extends com.amazonaws.services.ssooidc.model.AWSSSOOIDCException {
private static final long serialVersionUID = 1L;
private String error;
private String error_description;
/**
* Constructs a new AccessDeniedException with the specified error message.
*
* @param message
* Describes the error encountered.
*/
public AccessDeniedException(String message) {
super(message);
}
/**
* @param error
*/
@com.fasterxml.jackson.annotation.JsonProperty("error")
public void setError(String error) {
this.error = error;
}
/**
* @return
*/
@com.fasterxml.jackson.annotation.JsonProperty("error")
public String getError() {
return this.error;
}
/**
* @param error
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AccessDeniedException withError(String error) {
setError(error);
return this;
}
/**
* @param error_description
*/
@com.fasterxml.jackson.annotation.JsonProperty("error_description")
public void setError_description(String error_description) {
this.error_description = error_description;
}
/**
* @return
*/
@com.fasterxml.jackson.annotation.JsonProperty("error_description")
public String getError_description() {
return this.error_description;
}
/**
* @param error_description
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AccessDeniedException withError_description(String error_description) {
setError_description(error_description);
return this;
}
}