com.azure.resourcemanager.network.models.Error Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-network Show documentation
Show all versions of azure-resourcemanager-network Show documentation
This package contains Microsoft Azure Network Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.network.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;
/**
* Common error representation.
*/
@Immutable
public final class Error extends ManagementError {
/*
* Inner error message.
*/
private String innerError;
/*
* Additional info for the error.
*/
private List additionalInfo;
/*
* Details for the error.
*/
private List details;
/*
* The target of the error.
*/
private String target;
/*
* The error message parsed from the body of the http error response.
*/
private String message;
/*
* The error code parsed from the body of the http error response.
*/
private String code;
/**
* Creates an instance of Error class.
*/
public Error() {
}
/**
* Get the innerError property: Inner error message.
*
* @return the innerError value.
*/
public String getInnerError() {
return this.innerError;
}
/**
* Get the additionalInfo property: Additional info for the error.
*
* @return the additionalInfo value.
*/
@Override
public List getAdditionalInfo() {
return this.additionalInfo;
}
/**
* Get the details property: Details for the error.
*
* @return the details value.
*/
@Override
public List getDetails() {
return this.details;
}
/**
* Get the target property: The target of the error.
*
* @return the target value.
*/
@Override
public String getTarget() {
return this.target;
}
/**
* 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 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;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void 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 = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedError;
});
}
}