sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
Error objects.
type enum = [
| `Abort_error
| `Constraint_error
| `Data_clone_error
| `Data_error
| `Encoding_error
| `Hierarchy_request_error
| `Index_size_error
| `Invalid_access_error
| `Invalid_character_error
| `Invalid_modification_error
| `Invalid_node_type_error
| `Invalid_state_error
| `Namespace_error
| `Network_error
| `No_modification_allowed_error
| `Not_allowed_error
| `Not_found_error
| `Not_readable_error
| `Not_supported_error
| `Operation_error
| `Quota_exceeded_error
| `Read_only_error
| `Security_error
| `Syntax_error
| `Timeout_error
| `Transaction_inactive_error
| `Type_mismatch_error
| `Url_mismatch_error
| `Unknown_error
| `Version_error
| `Wrong_document_error
| `Other
If not listed. Do not match on this !
*) ]
The type for a selection of DOMException error names. Do not match on `Other
if your error is not listed, use a catch all _
branch and consult name
. This makes sure you code will work correctly if new cases are added in the future.
The type for Error
objects.
v ~name msg
is an error with message msg
and name name
(defaults to "Error"
).