Back to Content

QuotaExceededError

files/en-us/web/api/quotaexceedederror/index.md

latest1.2 KB
Original Source

{{APIRef("DOM")}}{{SeeCompatTable}}

The QuotaExceededError interface represents an error when a requested operation would exceed a system-imposed storage quota.

[!NOTE] In browser versions before this interface was implemented, it was a regular DOMException. The subclassing allows for extra information like quota and requested to be included.

{{InheritanceDiagram}}

Constructor

  • {{domxref("QuotaExceededError/QuotaExceededError", "QuotaExceededError()")}} {{experimental_inline}}
    • : Creates a QuotaExceededError object.

Instance properties

Also inherits properties from its ancestor {{domxref("DOMException")}}.

  • {{domxref("QuotaExceededError.quota")}} {{ReadOnlyInline}} {{experimental_inline}}
    • : Returns the system-defined storage limit (in bytes) that was exceeded.
  • {{domxref("QuotaExceededError.requested", "requested")}} {{ReadOnlyInline}} {{experimental_inline}}
    • : Returns the amount of storage (in bytes) that was requested during the operation.

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also