7496513104c9419119d490c03e279afa7b93a400
[policy/models.git] / models-errors / src / main / java / org / onap / policy / models / errors / concepts / ErrorResponseUtils.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  *  Modifications Copyright (C) 2021 AT&T Intellectual Property. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.models.errors.concepts;
23
24 import java.util.ArrayList;
25 import java.util.List;
26 import lombok.AccessLevel;
27 import lombok.NoArgsConstructor;
28
29 /**
30  * Utility class for managing {@link ErrorResponse objects}.
31  *
32  * @author Liam Fallon (liam.fallon@est.tech)
33  */
34 @NoArgsConstructor(access = AccessLevel.PRIVATE)
35 public final class ErrorResponseUtils {
36
37     /**
38      * Store the cascaded messages from an exception and all its nested exceptions in an ErrorResponse object.
39      *
40      * @param throwable the top level exception
41      */
42     public static void getExceptionMessages(final ErrorResponse errorResponse, final Throwable throwable) {
43         errorResponse.setErrorMessage(throwable.getMessage());
44
45         List<String> cascascadedErrorMessages = new ArrayList<>();
46
47         for (var t = throwable; t != null; t = t.getCause()) {
48             cascascadedErrorMessages.add(t.getMessage());
49         }
50
51         if (!cascascadedErrorMessages.isEmpty()) {
52             errorResponse.setErrorDetails(cascascadedErrorMessages);
53         }
54     }
55 }