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

com.noleme.flow.connect.etl.ETLCompilationException Maven / Gradle / Ivy

There is a newer version: 0.8.3
Show newest version
package com.noleme.flow.connect.etl;

/**
 * @author Pierre Lecerf ([email protected])
 * Created on 2020/03/09
 */
@Deprecated
public class ETLCompilationException extends ETLException
{
    /**
     *
     * @param message
     */
    public ETLCompilationException(String message)
    {
        super(message);
    }

    /**
     *
     * @param message
     * @param cause
     */
    public ETLCompilationException(String message, Throwable cause)
    {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy