1 package org.onap.sdc.workflow.services.exceptions;
3 public class VersionNotFoundException extends RuntimeException {
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));