aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/language-web/src/main/java/tools/refinery/language/web/xtext/servlet/XtextStatusCode.java
blob: caa98e8485d5a561e025b7e01bf837de8649ba29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * SPDX-FileCopyrightText: 2021-2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */
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");
	}
}