d98a15d768962d687d4681f158cce1372e55a733
[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     }  }