aboutsummaryrefslogtreecommitdiffstats
path: root/language-web/src/main/java/tools/refinery/language/web/xtext/servlet/XtextWebSocketErrorKind.java
blob: 66ea227ff17489dc292ee62ce14e9dce57c414c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package tools.refinery.language.web.xtext.servlet;

import com.google.gson.annotations.SerializedName;

public enum XtextWebSocketErrorKind {
	@SerializedName("request")
	REQUEST_ERROR,

	@SerializedName("server")
	SERVER_ERROR,

	@SerializedName("transaction")
	TRANSACTION_CANCELLED,
}