Skip to content

DataqueryErrorType🔗

Definition🔗

package com.grafana.foundation.testdata.DataqueryErrorType;

import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonValue;


@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum DataqueryErrorType {
    FRONTEND_EXCEPTION("frontend_exception"),
    FRONTEND_OBSERVABLE("frontend_observable"),
    SERVER_PANIC("server_panic"),
    _EMPTY("");

    private final String value;

    private DataqueryErrorType(String value) {
        this.value = value;
    }

    @JsonValue
    public String Value() {
        return value;
    }
}