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