web api interface
GPUUncapturedErrorEvent
Secure contextAvailable in workers
The GPUUncapturedErrorEvent interface of the WebGPU API is the event object type for the GPUDevice uncapturederror event, used for telemetry and to report unexpected errors.
Known error cases should be handled using pushErrorScope() and popErrorScope().
Constructor
GPUUncapturedErrorEvent()- : Creates a new
GPUUncapturedErrorEventobject instance.
- : Creates a new
Instance properties
Inherits properties from its parent, Event.
Examples
You could use something like the following as a global mechanism to pick up any errors that aren’t handled by error scopes and capture them.
// …
device.addEventListener("uncapturederror", (event) => {
// Re-surface the error
console.error("A WebGPU error was not captured:", event.error.message);
reportErrorToServer({
type: event.error.constructor.name,
message: event.error.message,
});
});
// …
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.