13c8021f554a97a07aa3303cc59f089d85bd2a32
[sdc/sdc-workflow-designer.git] /
1 package org.onap.sdc.workflow.services.exceptions;
2
3 public class WorkflowNotFoundException extends RuntimeException {
4
5     public WorkflowNotFoundException(String workflowId) {
6         super(String.format("Workflow with id '%s' does not exist", workflowId));
7     }
8 }