46a6d5ef0828467d1a05ce5cd7203ba088b4350e
[sdc/sdc-workflow-designer.git] /
1 package org.onap.sdc.workflow.services.errors;
2
3 import static org.springframework.http.HttpStatus.NOT_FOUND;
4
5 import org.springframework.web.bind.annotation.ResponseStatus;
6
7 @ResponseStatus(NOT_FOUND)
8 public class WorkflowNotFoundException extends RuntimeException {
9
10     public WorkflowNotFoundException(String workflowId) {
11         super(String.format("Workflow with id %s does not exist", workflowId));
12     }
13 }