blob: dbfa588908ceb970820d3d155f94b1bfd5b4eb20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package org.onap.vid.exceptions;
public class GenericUncheckedException extends RuntimeException {
public GenericUncheckedException(String message) {
super(message);
}
public GenericUncheckedException(String message, Throwable cause) {
super(message, cause);
}
public GenericUncheckedException(Throwable cause) {
super(cause);
}
}
|