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

org.embulk.spi.TempFileException Maven / Gradle / Ivy

package org.embulk.spi;

import java.io.IOException;

public class TempFileException extends RuntimeException {
    public TempFileException(IOException cause) {
        super(cause);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy