Sha256: 910e4c7a462d32ffa57262936e0f0e6fba7ade072ee5d4494d03ae7897f5c8f8
Contents?: true
Size: 650 Bytes
Versions: 50
Compression:
Stored size: 650 Bytes
Contents
package org.embulk.exec; import org.embulk.config.ConfigDiff; // Input/output plugins might need to stop Embulk before the transaction starts by depending // on the conditions of input/output data sources/destinations. They can throw this exception // if they want to do that. Embulk handles it and then stops the transaction. public class SkipTransactionException extends RuntimeException { private final ConfigDiff configDiff; public SkipTransactionException(ConfigDiff configDiff) { super(); this.configDiff = configDiff; } public ConfigDiff getConfigDiff() { return configDiff; } }
Version data entries
50 entries across 50 versions & 1 rubygems