From d1077082cafafdd275aa8e210cf5f430ec11934d Mon Sep 17 00:00:00 2001 From: "Magnusen, Drew (dm741q)" Date: Fri, 11 Aug 2017 13:19:34 -0500 Subject: Resolve major/critical issues in integrity-monitor Resolved major and critical sonar issues in integrity-monitor module. Issue-ID: [POLICY-96] Change-Id: If1da196134a73535668d42f429d647fc819ecaee Signed-off-by: Magnusen, Drew (dm741q) --- .../common/im/IntegrityMonitorException.java | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 integrity-monitor/src/main/java/org/onap/policy/common/im/IntegrityMonitorException.java (limited to 'integrity-monitor/src/main/java/org/onap/policy/common/im/IntegrityMonitorException.java') 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); + } + +} -- cgit 1.2.3-korg