Skip to content

BRLMFileAnalyzeError

This object contains the result of analyzing a file by BRLMFileAnalyzer.

Properties

code

Declaration

@property(nonatomic, readonly) BRLMFileAnalyzeErrorCode code;

allLogs

An array of log entries that were generated during the file analysis. For detail, see BRLMLog.

Declaration

@property(nonatomic, readonly) NSArray< BRLMLog* >* allLogs;

errorDescription

A string describing the error that occurred during the file analysis.

Declaration

@property(nonatomic, readonly) NSString* errorDescription;

Types

BRLMFileAnalyzeErrorCode

Declaration

typedef NS_ENUM(NSUInteger, BRLMFileAnalyzeErrorCode) {
    BRLMFileAnalyzeErrorNoError = 40000,
    BRLMFileAnalyzeErrorFileNotFound,
    BRLMFileAnalyzeErrorFileFormatIncorrectly,
    BRLMFileAnalyzeErrorUnknownError = 40099,
};