aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/exceptions/GenericUncheckedException.java
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/main/java/org/onap/vid/exceptions/GenericUncheckedException.java')
-rw-r--r--vid-app-common/src/main/java/org/onap/vid/exceptions/GenericUncheckedException.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/vid-app-common/src/main/java/org/onap/vid/exceptions/GenericUncheckedException.java b/vid-app-common/src/main/java/org/onap/vid/exceptions/GenericUncheckedException.java
new file mode 100644
index 000000000..dbfa58890
--- /dev/null
+++ b/vid-app-common/src/main/java/org/onap/vid/exceptions/GenericUncheckedException.java
@@ -0,0 +1,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);
+ }
+}