Interface: ErrorWithCause
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​
CameraError.ts:118
code?​
optional
code:number
The native error's code.
- iOS:
NSError.code
- Android: N/A
Defined in​
CameraError.ts:83
details?​
optional
details:Record
<string
,unknown
>
Optional additional details
- iOS:
NSError.userInfo
- Android: N/A
Defined in​
CameraError.ts:104
domain?​
optional
domain:string
The native error's domain.
- iOS:
NSError.domain
- Android: N/A
Defined in​
CameraError.ts:90
message​
message:
string
The native error description
- iOS:
NSError.message
- Android:
Throwable.message
Defined in​
CameraError.ts:97
stacktrace?​
optional
stacktrace:string
Optional Java stacktrace
- iOS: N/A
- Android:
Throwable.stacktrace.toString()
Defined in​
CameraError.ts:111