Sha256: 551a048a5cad92bfdbb02697bad4e5aeb1f562da0b1470ef8ef7920932d644a0
Contents?: true
Size: 577 Bytes
Versions: 3
Compression:
Stored size: 577 Bytes
Contents
package org.embulk.exec; import java.util.List; import org.embulk.config.NextConfig; public class ExecutionResult { private final NextConfig nextConfig; private final List<Throwable> ignoredExceptions; public ExecutionResult(NextConfig nextConfig, List<Throwable> ignoredExceptions) { this.nextConfig = nextConfig; this.ignoredExceptions = ignoredExceptions; } public NextConfig getNextConfig() { return nextConfig; } public List<Throwable> getIgnoredExceptions() { return ignoredExceptions; } }
Version data entries
3 entries across 3 versions & 1 rubygems