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

org.flyte.api.v1.ContainerError Maven / Gradle / Ivy

There is a newer version: 0.4.60
Show newest version
/*
 * Copyright 2020-2023 Flyte Authors.
 *
 * 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 org.flyte.api.v1;

/** Error message to propagate detailed errors from container executions to the execution engine. */
public class ContainerError extends RuntimeException {

  private static final long serialVersionUID = 5162780469952221158L;
  /** A simplified code for errors, so that we can provide a glossary of all possible errors. */
  private final String code;
  // TODO: add message from src/main/proto/flyteidl/core/errors.proto
  /** An abstract error kind for this error. Defaults to Non_Recoverable if not specified. */
  private final Kind kind;

  /** Defines a generic error type that dictates the behavior of the retry strategy. */
  public enum Kind {
    RECOVERABLE,
    NON_RECOVERABLE
  }

  private ContainerError(String code, String message, Kind kind) {
    super(message);

    this.code = code;
    this.kind = kind;
  }

  /**
   * Creates {@link ContainerError}.
   *
   * @param code a simplified code for errors, so that we can provide a glossary of all possible
   *     errors.
   * @param message a detailed error message
   * @param kind an abstract error kind for this error.
   * @return container error
   */
  public static ContainerError create(String code, String message, Kind kind) {
    return new ContainerError(code, message, kind);
  }

  /**
   * Returns a simplified code for errors, so that we can provide a glossary of all possible errors.
   *
   * @return error code
   */
  public String getCode() {
    return code;
  }

  /**
   * Returns an abstract error kind for this error.
   *
   * @return error kind
   */
  public Kind getKind() {
    return kind;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy