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