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

com.amazonaws.services.serverlessapplicationrepository.model.ConflictException Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWSServerlessApplicationRepository module holds the client classes that are used for communicating with AWSServerlessApplicationRepository Service

The newest version!
/*
 * Copyright 2019-2024 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.serverlessapplicationrepository.model;

import javax.annotation.Generated;

/**
 * 

* The resource already exists. *

*/ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ConflictException extends com.amazonaws.services.serverlessapplicationrepository.model.AWSServerlessApplicationRepositoryException { private static final long serialVersionUID = 1L; /** *

* 409 *

*/ private String errorCode; /** * Constructs a new ConflictException with the specified error message. * * @param message * Describes the error encountered. */ public ConflictException(String message) { super(message); } /** *

* 409 *

* * @param errorCode * 409 */ @com.fasterxml.jackson.annotation.JsonProperty("errorCode") public void setErrorCode(String errorCode) { this.errorCode = errorCode; } /** *

* 409 *

* * @return 409 */ @com.fasterxml.jackson.annotation.JsonProperty("errorCode") public String getErrorCode() { return this.errorCode; } /** *

* 409 *

* * @param errorCode * 409 * @return Returns a reference to this object so that method calls can be chained together. */ public ConflictException withErrorCode(String errorCode) { setErrorCode(errorCode); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy