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

com.lumiomedical.flow.impl.pipeline.PipelineRunException Maven / Gradle / Ivy

package com.lumiomedical.flow.impl.pipeline;

import com.lumiomedical.flow.compiler.RunException;
import com.lumiomedical.flow.impl.pipeline.runtime.heap.Heap;

/**
 * @author Pierre Lecerf ([email protected])
 * Created on 2020/03/02
 */
public class PipelineRunException extends RunException
{
    private final Heap heap;

    public PipelineRunException(String message, Heap heap)
    {
        super(message);
        this.heap = heap;
    }

    public PipelineRunException(String message, Throwable cause, Heap heap)
    {
        super(message, cause);
        this.heap = heap;
    }

    public Heap getHeap()
    {
        return heap;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy