Difference between http response status code 402 and 403
403 Forbidden
The server understood the request, but is refusing to fulfill it. Authorization will not help and the request SHOULD NOT be repeated. If the request method was not HEAD and the server wishes to make public why the request has not been fulfilled, it SHOULD describe the reason for the refusal in the entity. If the server does not wish to make this information available to the client, the status code 404 (Not Found) can be used instead.
http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
Dots this help?
The HTTP Statuscode 402 is indeed different from 403:
As it states in RFC 2616 the status code 402 is
402 Payment Required
That means the request is not generally forbidden but requires payment. Apparently it is used by some services in the intended manner List of HTTP status codes
I think it is currently not needed (or just not used because not specified how to use) but the authors of the standard did some thought an put it in for future use which could be useful.