Sha256: b93243d13dbf0fae85cab25f79101472716f1f0477a778bf575dc7c95f76b5c2

Contents?: true

Size: 353 Bytes

Versions: 5

Compression:

Stored size: 353 Bytes

Contents

package com.treasuredata.api;

public class TdApiExecutionInterruptedException
        extends TdApiExecutionException
{
    public TdApiExecutionInterruptedException(InterruptedException cause)
    {
        super(cause);
    }

    @Override
    public InterruptedException getCause() {
        return (InterruptedException) super.getCause();
    }
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
embulk-output-td-0.1.4 src/main/java/com/treasuredata/api/TdApiExecutionInterruptedException.java
embulk-output-td-0.1.3 src/main/java/com/treasuredata/api/TdApiExecutionInterruptedException.java
embulk-output-td-0.1.2 src/main/java/com/treasuredata/api/TdApiExecutionInterruptedException.java
embulk-output-td-0.1.1 src/main/java/com/treasuredata/api/TdApiExecutionInterruptedException.java
embulk-output-td-0.1.0 src/main/java/com/treasuredata/api/TdApiExecutionInterruptedException.java