82c97f94104c920353d8cb3fbb2a9861e0354c31
[sdc/sdc-workflow-designer.git] /
1 package org.onap.sdc.workflow.services.exceptions;
2
3
4 public class UniqueValueViolationException extends RuntimeException {
5
6     private static final String UNIQUE_VALUE_VIOLATION_MSG = "%s with the value '%s' already exists.";
7
8     public UniqueValueViolationException(String uniqueType, String value) {
9         super(String.format(UNIQUE_VALUE_VIOLATION_MSG, uniqueType, value));
10     }
11 }