StarPlayerError

Objective-C

@interface StarPlayerError : NSObject <NSCopying>

@property (nonatomic, strong) NSString              *message;
@property (nonatomic, assign) StarPlayerErrorCode   code;

- (instancetype)initWithCode:(StarPlayerErrorCode)code message:(NSString*)message;
@end

Swift

class StarPlayerError

Undocumented

  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *message
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic) StarPlayerErrorCode code

    Swift

    var code: Int32 { get set }
  • Undocumented

    Declaration

    Objective-C

    - (instancetype)initWithCode:(StarPlayerErrorCode)code message:(NSString*)message;

    Swift

    init!(code: Any!, message: Any!)