Error

data class Error(val message: String, val code: String? = null, val cause: Throwable? = null, val isRecoverable: Boolean = false) : TranscriptionResult

Error during transcription.

Constructors

Link copied to clipboard
constructor(message: String, code: String? = null, cause: Throwable? = null, isRecoverable: Boolean = false)

Properties

Link copied to clipboard

The underlying exception, if any

Link copied to clipboard
val code: String?

Error code from the provider, if available

Link copied to clipboard

Whether the transcription can continue after this error

Link copied to clipboard

Human-readable error description