Hello, so http status codes are
1xx, 2xx, 3xx, 4xx, 5xx.
Could we self define http status codes such as 9xx for our own usage?
I didn't see too many people use self defined http status codes. I prefer not to use self defined http status codes. But I have no authentic reasons against it.
Here is one which use self defined http status codes.
http://s23.org/wiki/http_status_codes
The advantage for that is we only need to check the header response and no need to check the body. But there must be some good reasons that not so many people are using this approach.
Any good reasons not using this approach?
Thanks!