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

io.trino.jdbc.$internal.client.FailureInfo Maven / Gradle / Ivy

There is a newer version: 458
Show newest version
/*
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package io.trino.jdbc.\$internal.client;

import io.trino.jdbc.\$internal.jackson.annotation.JsonCreator;
import io.trino.jdbc.\$internal.jackson.annotation.JsonProperty;
import io.trino.jdbc.\$internal.guava.collect.ImmutableList;
import com.google.errorprone.annotations.Immutable;
import io.trino.jdbc.\$internal.jakarta.annotation.Nullable;

import java.util.List;

import static java.util.Objects.requireNonNull;

@Immutable
public class FailureInfo
{
    private final String type;
    private final String message;
    private final FailureInfo cause;
    private final List suppressed;
    private final List stack;
    private final ErrorInfo errorInfo;
    private final ErrorLocation errorLocation;

    @JsonCreator
    public FailureInfo(
            @JsonProperty("type") String type,
            @JsonProperty("message") String message,
            @JsonProperty("cause") FailureInfo cause,
            @JsonProperty("suppressed") List suppressed,
            @JsonProperty("stack") List stack,
            @JsonProperty("errorInfo") @Nullable ErrorInfo errorInfo,
            @JsonProperty("errorLocation") @Nullable ErrorLocation errorLocation)
    {
        requireNonNull(type, "type is null");
        requireNonNull(suppressed, "suppressed is null");
        requireNonNull(stack, "stack is null");

        this.type = type;
        this.message = message;
        this.cause = cause;
        this.suppressed = ImmutableList.copyOf(suppressed);
        this.stack = ImmutableList.copyOf(stack);
        this.errorInfo = errorInfo;
        this.errorLocation = errorLocation;
    }

    @JsonProperty
    public String getType()
    {
        return type;
    }

    @Nullable
    @JsonProperty
    public String getMessage()
    {
        return message;
    }

    @Nullable
    @JsonProperty
    public FailureInfo getCause()
    {
        return cause;
    }

    @JsonProperty
    public List getSuppressed()
    {
        return suppressed;
    }

    @JsonProperty
    public List getStack()
    {
        return stack;
    }

    @Nullable
    @JsonProperty
    public ErrorInfo getErrorInfo()
    {
        return errorInfo;
    }

    @Nullable
    @JsonProperty
    public ErrorLocation getErrorLocation()
    {
        return errorLocation;
    }

    public RuntimeException toException()
    {
        return new FailureException(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy