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

com.fivefaces.structureclient.controller.WorkflowFailedException Maven / Gradle / Ivy

There is a newer version: 1.0.62
Show newest version
package com.fivefaces.structureclient.controller;

import com.fivefaces.cloud.workflow.WorkflowExecutionResult;
import lombok.Getter;

@Getter
public class WorkflowFailedException extends RuntimeException {

    private final WorkflowExecutionResult result;

    public WorkflowFailedException(String message, WorkflowExecutionResult result) {
        super(message);
        this.result = result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy