ErrorSeverity
enum ErrorSeverity {}
All possible severity of errors reported to Conviva.
-
The error could prevent playback altogether.
Declaration
Objective-C
ERROR_FATAL = 0Swift
case ERROR_FATAL = 0 -
The error should not affect playback.
Declaration
Objective-C
ERROR_WARNING = 1Swift
case ERROR_WARNING = 1 -
The error could prevent playback altogether. Only for AVFoundation module backward compatability. Do not use in other cases.
Declaration
Objective-C
SEVERITY_FATAL = 0Swift
static var SEVERITY_FATAL: ErrorSeverity { get } -
The error could prevent playback altogether. Only for AVFoundation module backward compatability. Do not use in other cases.
Declaration
Objective-C
SEVERITY_WARNING = 1Swift
static var SEVERITY_WARNING: ErrorSeverity { get }
ErrorSeverity Enumeration Reference