cadabb4c9734d5eff500bb7704aa661740880e0c
[sdc/sdc-workflow-designer.git] /
1 package org.onap.sdc.workflow.services.exceptions;
2
3 public class CreateVersionException extends RuntimeException  {
4
5     public CreateVersionException(String workflowId, String version) {
6         super(String.format("Error creating new version for workflow with id %s. There is already a draft version %s",
7                 workflowId, version));
8     }
9 }