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

org.embulk.exec.PartialExecutionException Maven / Gradle / Ivy

package org.embulk.exec;

public class PartialExecutionException extends RuntimeException {
    private final ResumeState resumeState;
    private final TransactionStage transactionStage;

    public PartialExecutionException(Throwable cause, ResumeState resumeState, TransactionStage transactionStage) {
        super(cause);
        this.resumeState = resumeState;
        this.transactionStage = transactionStage;
    }

    public ResumeState getResumeState() {
        return resumeState;
    }

    public TransactionStage getTransactionStage() {
        return transactionStage;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy