What does HRESULT 0x8019019A (HTTP_E_STATUS_GONE) mean?

 
Previous Next
HTTP_E_STATUS_CONFLICT HTTP_E_STATUS_LENGTH_REQUIRED

HTTP_E_STATUS_GONE

HTTP_E_STATUS_GONE maps to HTTP 410 Gone. The server indicates that access to the target resource is no longer available and is likely to be permanent.

What to do for HTTP_E_STATUS_GONE

  • Update clients, links, manifests, or configuration that still reference the old URI.
  • Check service migration and deprecation notices for the replacement resource or API version.
  • Unlike 404, 410 is intended to help clients and caches stop retrying a resource that has deliberately been removed.

RFC 9110: 410 Gone

Diagnostic interpretation of HTTP_E_STATUS_GONE

HTTP_E_STATUS_GONE has the HRESULT value 0x8019019A. AllStat records the condition as “Gone (410).”. For HTTP_E_STATUS_GONE, in practice, interpret that wording at the boundary owned by the Windows component or COM interface that returned the HRESULT, rather than treating the value as a generic Windows message.

Evidence to capture for HTTP_E_STATUS_GONE

  • Record the exact COM method or Windows API, its input object, the calling thread, and the full 0x8019019A value before a wrapper converts it to an exception or Boolean result.
  • Capture any IErrorInfo text, activity identifier, event-log entry, and subsystem trace that mentions HTTP_E_STATUS_GONE or the gone operation.
  • Preserve the first failure in the call chain; a later HRESULT can describe cleanup rather than the original gone condition.

Retry and recovery for HTTP_E_STATUS_GONE

Retry HTTP_E_STATUS_GONE only when the owning API documents a transient state or after the condition described as “Gone (410).” has changed. For HTTP_E_STATUS_GONE, configuration, policy, format, and authorization failures normally require correction first; an immediate loop can hide the original call site and add secondary errors.


Looking for a different code? Search another status or error code.