com.azure.resourcemanager.applicationinsights.models.WorkItemConfigurationErrorException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-applicationinsights Show documentation
Show all versions of azure-resourcemanager-applicationinsights Show documentation
This package contains Microsoft Azure SDK for ApplicationInsights Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Composite Swagger for Application Insights Management Client. Package tag package-2022-04-01.
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.applicationinsights.models;
import com.azure.core.http.HttpResponse;
import com.azure.core.management.exception.ManagementException;
/** Exception thrown for an invalid response with WorkItemConfigurationError information. */
public final class WorkItemConfigurationErrorException extends ManagementException {
/**
* Initializes a new instance of the WorkItemConfigurationErrorException class.
*
* @param message the exception message or the response content if a message is not available.
* @param response the HTTP response.
*/
public WorkItemConfigurationErrorException(String message, HttpResponse response) {
super(message, response);
}
/**
* Initializes a new instance of the WorkItemConfigurationErrorException class.
*
* @param message the exception message or the response content if a message is not available.
* @param response the HTTP response.
* @param value the deserialized response value.
*/
public WorkItemConfigurationErrorException(
String message, HttpResponse response, WorkItemConfigurationError value) {
super(message, response, value);
}
@Override
public WorkItemConfigurationError getValue() {
return (WorkItemConfigurationError) super.getValue();
}
}