List of Input Parameters for VSP
[sdc.git] / openecomp-be / lib / openecomp-sdc-externaltesting-lib / openecomp-sdc-externaltesting-api / src / main / java / org / openecomp / core / externaltesting / errors / ExternalTestingException.java
1 /*
2  * Copyright © 2019 iconectiv
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.openecomp.core.externaltesting.errors;
18
19 import lombok.Data;
20 import lombok.EqualsAndHashCode;
21 import org.apache.commons.lang3.builder.ToStringBuilder;
22
23 @Data
24 @EqualsAndHashCode(callSuper=false)
25 public class ExternalTestingException extends RuntimeException {
26
27   private static final long serialVersionUID = -4357810130868566088L;
28
29   private final String title;
30   private final int code;
31   private final String detail;
32
33   public ExternalTestingException(String title, int code, String detail) {
34     super(title);
35     this.title = title;
36     this.code = code;
37     this.detail = detail;
38   }
39
40   public ExternalTestingException(String title, int code, String detail, Throwable parent) {
41     super(title, parent);
42     this.title = title;
43     this.code = code;
44     this.detail = detail;
45   }
46
47   @Override
48   public String toString() {
49     return ToStringBuilder.reflectionToString(this);
50   }
51 }