SmartclipSDKiOS 3.0.0
Smartclip Advertisement Framework for iOS
Loading...
Searching...
No Matches
SCMediaError.h
1//
2// SCMediaError.h
3// SmartclipSDKiOS
4//
5// Copyright © 2019 smartclip. All rights reserved.
6//
7
8#import <Foundation/Foundation.h>
9
10NS_ASSUME_NONNULL_BEGIN
11
13@interface SCMediaError : NSObject
15typedef enum MediaErrorCode {
16 MEDIA_ERR_ABORTED = 1,
17 MEDIA_ERR_NETWORK,
18 MEDIA_ERR_DECODE,
19 MEDIA_ERR_SRC_NOT_SUPPORTED
20} MediaErrorCode;
21
23- (instancetype)initWithError:(NSError*)error;
25- (NSString*)description;
26@end
27
28NS_ASSUME_NONNULL_END
Use this class to inform SmartclipSDKiOS about a media error (error that occured during content video...
Definition: SCMediaError.h:14
MediaErrorCode
Media error codes.
Definition: SCMediaError.h:15