![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.keyvault.models.Error Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.keyvault.models;
import com.azure.core.annotation.Immutable;
import com.azure.core.management.exception.AdditionalInfo;
import com.azure.core.management.exception.ManagementError;
import com.azure.json.JsonReader;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
import java.util.List;
/**
* The error exception.
*/
@Immutable
public final class Error extends ManagementError {
/*
* The inner error, contains a more specific error code.
*/
private Error innerError;
/*
* The error code parsed from the body of the http error response.
*/
private String code;
/*
* The error message parsed from the body of the http error response.
*/
private String message;
/*
* The target of the error.
*/
private String target;
/*
* Details for the error.
*/
private List details;
/*
* Additional info for the error.
*/
private List additionalInfo;
/**
* Creates an instance of Error class.
*/
public Error() {
}
/**
* Get the innerError property: The inner error, contains a more specific error code.
*
* @return the innerError value.
*/
public Error getInnerError() {
return this.innerError;
}
/**
* Get the code property: The error code parsed from the body of the http error response.
*
* @return the code value.
*/
@Override
public String getCode() {
return this.code;
}
/**
* Get the message property: The error message parsed from the body of the http error response.
*
* @return the message value.
*/
@Override
public String getMessage() {
return this.message;
}
/**
* Get the target property: The target of the error.
*
* @return the target value.
*/
@Override
public String getTarget() {
return this.target;
}
/**
* Get the details property: Details for the error.
*
* @return the details value.
*/
@Override
public List getDetails() {
return this.details;
}
/**
* Get the additionalInfo property: Additional info for the error.
*
* @return the additionalInfo value.
*/
@Override
public List getAdditionalInfo() {
return this.additionalInfo;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (getInnerError() != null) {
getInnerError().validate();
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of Error from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of Error if the JsonReader was pointing to an instance of it, or null if it was pointing to
* JSON null.
* @throws IOException If an error occurs while reading the Error.
*/
public static Error fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
JsonReader bufferedReader = reader.bufferObject();
bufferedReader.nextToken();
while (bufferedReader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = bufferedReader.getFieldName();
bufferedReader.nextToken();
if ("error".equals(fieldName)) {
return readManagementError(bufferedReader);
} else {
bufferedReader.skipChildren();
}
}
return readManagementError(bufferedReader.reset());
});
}
private static Error readManagementError(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
Error deserializedError = new Error();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("code".equals(fieldName)) {
deserializedError.code = reader.getString();
} else if ("message".equals(fieldName)) {
deserializedError.message = reader.getString();
} else if ("target".equals(fieldName)) {
deserializedError.target = reader.getString();
} else if ("details".equals(fieldName)) {
List details = reader.readArray(reader1 -> ManagementError.fromJson(reader1));
deserializedError.details = details;
} else if ("additionalInfo".equals(fieldName)) {
List additionalInfo = reader.readArray(reader1 -> AdditionalInfo.fromJson(reader1));
deserializedError.additionalInfo = additionalInfo;
} else if ("innererror".equals(fieldName)) {
deserializedError.innerError = Error.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedError;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy