aboutsummaryrefslogtreecommitdiffstats
path: root/certService/src/main/java/org/onap/aaf/certservice/certification/exceptions/DecryptionException.java
diff options
context:
space:
mode:
authorawudzins <adam.wudzinski@nokia.com>2020-02-19 14:32:58 +0100
committerawudzins <adam.wudzinski@nokia.com>2020-02-19 14:55:30 +0100
commitf28a670df2ea958a83d28930264f002f6d67eec7 (patch)
tree78ecee38161b9d47c43644f5bc5a812a27424108 /certService/src/main/java/org/onap/aaf/certservice/certification/exceptions/DecryptionException.java
parente93c679bc9c22e034ba93a48460830716e1f7457 (diff)
Remove cyclic dependencies and rename execeptions package
Issue-ID: AAF-997 Signed-off-by: adamwudzinski <adam.wudzinski@nokia.com> Change-Id: Ib7a7da43ac616c74945490fd727c9ac7d7fc7cdd
Diffstat (limited to 'certService/src/main/java/org/onap/aaf/certservice/certification/exceptions/DecryptionException.java')
-rw-r--r--certService/src/main/java/org/onap/aaf/certservice/certification/exceptions/DecryptionException.java30
1 files changed, 0 insertions, 30 deletions
diff --git a/certService/src/main/java/org/onap/aaf/certservice/certification/exceptions/DecryptionException.java b/certService/src/main/java/org/onap/aaf/certservice/certification/exceptions/DecryptionException.java
deleted file mode 100644
index 8f5f48e6..00000000
--- a/certService/src/main/java/org/onap/aaf/certservice/certification/exceptions/DecryptionException.java
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * ============LICENSE_START=======================================================
- * PROJECT
- * ================================================================================
- * Copyright (C) 2020 Nokia. 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.aaf.certservice.certification.exceptions;
-
-public class DecryptionException extends Exception {
- public DecryptionException(String message, Throwable cause) {
- super(message, cause);
- }
- public DecryptionException(String message) {
- super(message);
- }
-}