Fix checkstyle violations in sdc/jtosca
[sdc/sdc-tosca.git] / src / main / java / org / onap / sdc / toscaparser / api / common / JToscaException.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.sdc.toscaparser.api.common;
22
23 public class JToscaException extends Exception {
24
25     private static final long serialVersionUID = 1L;
26     private String code;
27
28     public JToscaException(String message, String code) {
29         super(message);
30         this.code = code;
31     }
32
33     public String getCode() {
34         return code;
35     }
36
37     public void setCode(String code) {
38         this.code = code;
39     }
40
41     //JE1001 - Meta file missing
42     //JE1002 - Invalid yaml content
43     //JE1003 - Entry-Definition not defined in meta file
44     //JE1004 - Entry-Definition file missing
45     //JE1005 - General Error
46     //JE1006 - General Error/Path not valid
47 }