diff options
Diffstat (limited to 'shared/core-utils')
-rw-r--r-- | shared/core-utils/miscs/http-error-codes.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/shared/core-utils/miscs/http-error-codes.ts b/shared/core-utils/miscs/http-error-codes.ts index 9ac8a6c83..b2fbdfc5a 100644 --- a/shared/core-utils/miscs/http-error-codes.ts +++ b/shared/core-utils/miscs/http-error-codes.ts | |||
@@ -196,6 +196,8 @@ export enum HttpStatusCode { | |||
196 | * | 196 | * |
197 | * Indicates that the request could not be processed because of conflict in the request, | 197 | * Indicates that the request could not be processed because of conflict in the request, |
198 | * such as an edit conflict between multiple simultaneous updates. | 198 | * such as an edit conflict between multiple simultaneous updates. |
199 | * | ||
200 | * @see HttpStatusCode.UNPROCESSABLE_ENTITY_422 to denote a disabled feature | ||
199 | */ | 201 | */ |
200 | CONFLICT_409 = 409, | 202 | CONFLICT_409 = 409, |
201 | 203 | ||
@@ -269,6 +271,12 @@ export enum HttpStatusCode { | |||
269 | * Official Documentation @ https://tools.ietf.org/html/rfc2518#section-10.3 | 271 | * Official Documentation @ https://tools.ietf.org/html/rfc2518#section-10.3 |
270 | * | 272 | * |
271 | * The request was well-formed but was unable to be followed due to semantic errors. | 273 | * The request was well-formed but was unable to be followed due to semantic errors. |
274 | * The server understands the content type of the request entity (hence a 415 (Unsupported Media Type) status code is inappropriate), | ||
275 | * and the syntax of the request entity is correct (thus a 400 (Bad Request) status code is inappropriate) but was unable to process | ||
276 | * the contained instructions. For example, this error condition may occur if an JSON request body contains well-formed (i.e., | ||
277 | * syntactically correct), but semantically erroneous, JSON instructions. | ||
278 | * | ||
279 | * Can also be used to denote disabled features (akin to disabled syntax). | ||
272 | * | 280 | * |
273 | * @see HttpStatusCode.UNSUPPORTED_MEDIA_TYPE_415 if the `Content-Type` was not supported. | 281 | * @see HttpStatusCode.UNSUPPORTED_MEDIA_TYPE_415 if the `Content-Type` was not supported. |
274 | * @see HttpStatusCode.BAD_REQUEST_400 if the request was not parsable (broken JSON, XML) | 282 | * @see HttpStatusCode.BAD_REQUEST_400 if the request was not parsable (broken JSON, XML) |