aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openecomp/sdc/toscaparser/api/common/JToscaException.java
blob: f97e6ad242e6e4b649bbb16024a24c70b654f887 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package org.openecomp.sdc.toscaparser.api.common;

public class JToscaException extends Exception {

	private static final long serialVersionUID = 1L;
	private String code;

	public JToscaException(String message, String code) {
		super(message);
		this.code = code;
	}

	public String getCode() {
		return code;
	}

	public void setCode(String code) {
		this.code = code;
	}

	//JE1001 - Meta file missing
	//JE1002 - Invalid yaml content
	//JE1003 - Entry-Definition not defined in meta file
	//JE1004 - Entry-Definition file missing
	//JE1005 - General Error
	//JE1006 - General Error/Path not valid
}