* Move everything into package * Remove .DS_Store * Move scripts and eslintrc to package * Create CODE_OF_CONDUCT.md * fix some links * Update all links (I think) * Update generated docs * Update notice-yarn-changes.yml * Update validate-android.yml * Update validate-cpp.yml * Delete notice-yarn-changes.yml * Update validate-cpp.yml * Update validate-cpp.yml * Update validate-js.yml * Update validate-cpp.yml * Update validate-cpp.yml * wrong c++ style * Revert "wrong c++ style" This reverts commit 55a3575589c6f13f8b05134d83384f55e0601ab2.
1.9 KiB
1.9 KiB
id | title | sidebar_position | custom_edit_url |
---|---|---|---|
ErrorWithCause | ErrorWithCause | 0 | null |
Represents a JSON-style error cause. This contains native NSError
/Throwable
information, and can have recursive .cause
properties until the ultimate cause has been found.
Properties
cause
• Optional
cause: ErrorWithCause
Optional additional cause for nested errors
- iOS: N/A
- Android:
Throwable.cause
Defined in
code
• Optional
code: number
The native error's code.
- iOS:
NSError.code
- Android: N/A
Defined in
details
• Optional
details: Record
<string
, unknown
>
Optional additional details
- iOS:
NSError.userInfo
- Android: N/A
Defined in
domain
• Optional
domain: string
The native error's domain.
- iOS:
NSError.domain
- Android: N/A
Defined in
message
• message: string
The native error description
- iOS:
NSError.message
- Android:
Throwable.message
Defined in
stacktrace
• Optional
stacktrace: string
Optional Java stacktrace
- iOS: N/A
- Android:
Throwable.stacktrace.toString()