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

io.delta.flink.source.internal.exceptions.DeltaSourceException Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package io.delta.flink.source.internal.exceptions;

import java.util.Optional;

/**
 * A runtime exception throw by {@link io.delta.flink.source.DeltaSource} components.
 */
public class DeltaSourceException extends RuntimeException {

    /**
     * Path to Delta table for which exception was thrown.
     */
    private final String tablePath;

    /**
     * The {@link io.delta.standalone.Snapshot} version for which exception was throw.
     * 

* This value can be null, meaning that we were not able to identify snapshot version for this * exception. */ private final Long snapshotVersion; public DeltaSourceException(String message) { super(message); this.tablePath = null; this.snapshotVersion = null; } public DeltaSourceException(String tablePath, Long snapshotVersion, Throwable cause) { super(cause); this.tablePath = String.valueOf(tablePath); this.snapshotVersion = snapshotVersion; } public DeltaSourceException(String tablePath, Long snapshotVersion, String message) { super(message); this.tablePath = String.valueOf(tablePath); this.snapshotVersion = snapshotVersion; } public DeltaSourceException(String tablePath, Long snapshotVersion, String message, Throwable cause) { super(message, cause); this.tablePath = String.valueOf(tablePath); this.snapshotVersion = snapshotVersion; } /** * @return Delta table path for which this exception was thrown. */ public Optional getTablePath() { return Optional.ofNullable(tablePath); } /** * @return An {@link Optional} value with {@link io.delta.standalone.Snapshot} version for which * this exception was thrown. If snapshot value was unknown, then the returned optional will be * empty. */ public Optional getSnapshotVersion() { return Optional.ofNullable(snapshotVersion); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy