diff options
author | liamfallon <liam.fallon@est.tech> | 2019-03-21 11:06:07 +0000 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2019-03-21 11:06:07 +0000 |
commit | 68476866a3be0b5cc10b75f31b247c2e98e19b69 (patch) | |
tree | 8d5f8abfc5ee43a071fcae7bb07f81e1ac7a8ab2 /models-base/src/main | |
parent | 8fc237cc606b6e9c8c7d7e7a2c811fc671a4b40e (diff) |
Add interface to get info from exceptions
Interface allows uniform geting of information from checked
and runtime model exceptions
Issue-ID: POLICY-1195
Change-Id: I913b98a4d4b705ed256714392cafc72d6a71877f
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'models-base/src/main')
3 files changed, 88 insertions, 4 deletions
diff --git a/models-base/src/main/java/org/onap/policy/models/base/PfModelException.java b/models-base/src/main/java/org/onap/policy/models/base/PfModelException.java index 97ea7de00..ce44e51f3 100644 --- a/models-base/src/main/java/org/onap/policy/models/base/PfModelException.java +++ b/models-base/src/main/java/org/onap/policy/models/base/PfModelException.java @@ -25,12 +25,14 @@ import javax.ws.rs.core.Response; import lombok.Getter; import lombok.ToString; +import org.apache.commons.lang3.exception.ExceptionUtils; + /** * This class is a base exception from which all model exceptions are sub classes. */ @Getter @ToString -public class PfModelException extends Exception { +public class PfModelException extends Exception implements PfModelExceptionInfo { private static final long serialVersionUID = -8507246953751956974L; // The status code on the exception @@ -93,6 +95,7 @@ public class PfModelException extends Exception { * * @return the cascaded messages from this exception and the exceptions that caused it */ + @Override public String getCascadedMessage() { return buildCascadedMessage(this); } @@ -114,4 +117,14 @@ public class PfModelException extends Exception { return builder.toString(); } + + /** + * Get the stack trace of the exception as a string. + * + * @return the stack trace of this message as a string + */ + @Override + public String getStackTraceAsString() { + return ExceptionUtils.getStackTrace(this); + } } diff --git a/models-base/src/main/java/org/onap/policy/models/base/PfModelExceptionInfo.java b/models-base/src/main/java/org/onap/policy/models/base/PfModelExceptionInfo.java new file mode 100644 index 000000000..2fe244cec --- /dev/null +++ b/models-base/src/main/java/org/onap/policy/models/base/PfModelExceptionInfo.java @@ -0,0 +1,59 @@ +/*- + * ============LICENSE_START======================================================= + * Copyright (C) 2019 Nordix Foundation. + * ================================================================================ + * 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. + * + * SPDX-License-Identifier: Apache-2.0 + * ============LICENSE_END========================================================= + */ + +package org.onap.policy.models.base; + +import javax.ws.rs.core.Response; + +/** + * Interface implemented bu Policy framework model exceptions to allow uniform reading of status codes and cascaded + * messages. + * + * @author Liam Fallon (liam.fallon@est.tech) + */ +public interface PfModelExceptionInfo { + + /** + * Get the status code associated with an exception. + * @return the status code + */ + public Response.Status getStatusCode(); + + /** + * Get the messages for all the cascaded exceptions in an exception. + * + * @return the cascaded message + */ + public String getCascadedMessage(); + + /** + * Get the object associated with an exception. + * + * @return the object associated with an exception + */ + public Object getObject(); + + /** + * Get the stack trace of the exception as a string. + * + * @return the stack trace of this message as a string + */ + public String getStackTraceAsString(); +} diff --git a/models-base/src/main/java/org/onap/policy/models/base/PfModelRuntimeException.java b/models-base/src/main/java/org/onap/policy/models/base/PfModelRuntimeException.java index c4684bc09..32855c2a4 100644 --- a/models-base/src/main/java/org/onap/policy/models/base/PfModelRuntimeException.java +++ b/models-base/src/main/java/org/onap/policy/models/base/PfModelRuntimeException.java @@ -25,13 +25,14 @@ import javax.ws.rs.core.Response; import lombok.Getter; import lombok.ToString; +import org.apache.commons.lang3.exception.ExceptionUtils; + /** - * This class is a base model run time exception from which all model run time exceptions are sub - * classes. + * This class is a base model run time exception from which all model run time exceptions are sub classes. */ @Getter @ToString -public class PfModelRuntimeException extends RuntimeException { +public class PfModelRuntimeException extends RuntimeException implements PfModelExceptionInfo { private static final long serialVersionUID = -8507246953751956974L; // The return code on the exception @@ -94,7 +95,18 @@ public class PfModelRuntimeException extends RuntimeException { * * @return the message of this exception and all the exceptions that caused this exception */ + @Override public String getCascadedMessage() { return PfModelException.buildCascadedMessage(this); } + + /** + * Get the stack trace of the exception as a string. + * + * @return the stack trace of this message as a string + */ + @Override + public String getStackTraceAsString() { + return ExceptionUtils.getStackTrace(this); + } } |