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

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

package io.digdag.spi;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy