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

com.azure.communication.chat.models.ChatError Maven / Gradle / Ivy

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.communication.chat.models;

import com.azure.core.annotation.Fluent;
import java.util.List;

/**
 * The Chat Services error.
 */
@Fluent
public final class ChatError {

    private final String code;

    private final String message;

    private final String target;

    private final List details;

    private final ChatError innerError;

    /**
     * Constructs a new ChatError
     * @param message The message of the original error
     * @param code The error code
     * @param target The target of the error
     * @param details Additional details
     * @param innerError The inner error
     */
    public ChatError(String message, String code, String target, List details, ChatError innerError) {
        this.message = message;
        this.code = code;
        this.target = target;
        this.details = details;
        this.innerError = innerError;
    }

    /**
     * Get the code property: The error code.
     *
     * @return the code value.
     */
    public String getCode() {
        return this.code;
    }

    /**
     * Get the message property: The error message.
     *
     * @return the message value.
     */
    public String getMessage() {
        return this.message;
    }

    /**
     * Get the target property: The error target.
     *
     * @return the target value.
     */
    public String getTarget() {
        return this.target;
    }

    /**
     * Get the details property: Further details about specific errors that led to this error.
     *
     * @return the details value.
     */
    public List getDetails() {
        return this.details;
    }

    /**
     * Get the innerError property: The inner error if any.
     *
     * @return the innerError value.
     */
    public ChatError getInnerError() {
        return this.innerError;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy