Merge 1806 code of vid-common
[vid.git] / vid-app-common / src / main / java / org / onap / vid / exceptions / OperationNotAllowedException.java
1 package org.onap.vid.exceptions;
2
3 public class OperationNotAllowedException extends GenericUncheckedException {
4     public OperationNotAllowedException(String message) {
5         super(message);
6     }
7 }