Merge 1806 code of vid-common
[vid.git] / vid-app-common / src / main / java / org / onap / vid / exceptions / GenericUncheckedException.java
1 package org.onap.vid.exceptions;
2
3 public class GenericUncheckedException extends RuntimeException {
4     public GenericUncheckedException(String message) {
5         super(message);
6     }
7
8     public GenericUncheckedException(String message, Throwable cause) {
9         super(message, cause);
10     }
11
12     public GenericUncheckedException(Throwable cause) {
13         super(cause);
14     }
15 }