From 1d90088826d5bb2f141be9683d9e31b606fca978 Mon Sep 17 00:00:00 2001 From: Bartosz Gardziejewski Date: Wed, 12 Feb 2020 11:53:42 +0100 Subject: Return hardcoded CA certs and certification chain. Issue-ID: AAF-995 Signed-off-by: Bartosz Gardziejewski Change-Id: I38b498c4deeedc4ea4323065c5f7b5ddd137209f --- .../exceptions/DecryptionException.java | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 certService/src/main/java/org/onap/aaf/certservice/certification/exceptions/DecryptionException.java (limited to 'certService/src/main/java/org/onap/aaf/certservice/certification/exceptions/DecryptionException.java') 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 new file mode 100644 index 00000000..67249cd5 --- /dev/null +++ b/certService/src/main/java/org/onap/aaf/certservice/certification/exceptions/DecryptionException.java @@ -0,0 +1,27 @@ +/* + * ============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); + } +} -- cgit 1.2.3-korg