aboutsummaryrefslogtreecommitdiffstats
path: root/language-web/src/main/java/tools/refinery/language/web/xtext/servlet/XtextStatusCode.java
blob: 0cd229e8f62478713ff9579df622a9a820e0afe3 (plain) (blame)
1
2
3
4
5
6
7
8
9
package tools.refinery.language.web.xtext.servlet;

public final class XtextStatusCode {
	public static final int INVALID_JSON = 4007;

	private XtextStatusCode() {
		throw new IllegalStateException("This is a static utility class and should not be instantiated directly");
	}
}