aboutsummaryrefslogtreecommitdiffstats
path: root/integrity-monitor/src/main/java/org/onap/policy/common/im/IntegrityMonitorException.java
diff options
context:
space:
mode:
authorJorge Hernandez <jh1730@att.com>2017-08-15 15:23:59 +0000
committerGerrit Code Review <gerrit@onap.org>2017-08-15 15:23:59 +0000
commit6b20e15005866454f5cb8d528de0d03aa75f52e7 (patch)
treefbaa0746b373ae99dd9259b7e385e4082541e2a3 /integrity-monitor/src/main/java/org/onap/policy/common/im/IntegrityMonitorException.java
parent3b6aa335624dbe14963c4dfa1d32ad0336141dc7 (diff)
parentd1077082cafafdd275aa8e210cf5f430ec11934d (diff)
Merge "Resolve major/critical issues in integrity-monitor"
Diffstat (limited to 'integrity-monitor/src/main/java/org/onap/policy/common/im/IntegrityMonitorException.java')
-rw-r--r--integrity-monitor/src/main/java/org/onap/policy/common/im/IntegrityMonitorException.java38
1 files changed, 38 insertions, 0 deletions
diff --git a/integrity-monitor/src/main/java/org/onap/policy/common/im/IntegrityMonitorException.java b/integrity-monitor/src/main/java/org/onap/policy/common/im/IntegrityMonitorException.java
new file mode 100644
index 00000000..95b0a750
--- /dev/null
+++ b/integrity-monitor/src/main/java/org/onap/policy/common/im/IntegrityMonitorException.java
@@ -0,0 +1,38 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * Integrity Monitor
+ * ================================================================================
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ */
+
+package org.onap.policy.common.im;
+
+public class IntegrityMonitorException extends Exception{
+ private static final long serialVersionUID = 1L;
+ public IntegrityMonitorException() {
+ }
+ public IntegrityMonitorException(String message) {
+ super(message);
+ }
+
+ public IntegrityMonitorException(Throwable cause) {
+ super(cause);
+ }
+ public IntegrityMonitorException(String message, Throwable cause) {
+ super(message, cause);
+ }
+
+}