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

io.digdag.spi.StorageFileNotFoundException Maven / Gradle / Ivy

package io.digdag.spi;

public class StorageFileNotFoundException
    extends Exception
{
    public StorageFileNotFoundException(String message)
    {
        super(message);
    }

    public StorageFileNotFoundException(String message, Throwable cause)
    {
        super(message, cause);
    }

    public StorageFileNotFoundException(Throwable cause)
    {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy