1 package org.onap.sdc.workflow.services.exceptions;
3 public class WorkflowNotFoundException extends RuntimeException {
5 public WorkflowNotFoundException(String workflowId) {
6 super(String.format("Workflow with id '%s' does not exist", workflowId));