GCKError Class

  • GCKError is a subclass of NSError specifically designed for Google Cast framework errors.

  • You can construct a GCKError instance with an error code and optional custom data.

  • A human-readable description can be obtained for any given GCKErrorCode using the enumDescriptionForCode: method.

GCKError Class Reference

Overview

A subclass of NSError for framework errors.

Inherits NSError.

Class Method Summary

(GCKError *) + errorWithCode:
 Constructs a GCKError with the given error code. More...
 
(GCKError *) + errorWithCode:customData:
 Constructs a GCKError with the given error code and optional custom data. More...
 
(NSString *) + enumDescriptionForCode:
 Returns the human-readable description for a given error code. More...
 

Method Detail

+ (GCKError *) errorWithCode: (GCKErrorCode code

Constructs a GCKError with the given error code.

+ (GCKError *) errorWithCode: (GCKErrorCode code
customData: (id __nullable)  customData 

Constructs a GCKError with the given error code and optional custom data.

+ (NSString *) enumDescriptionForCode: (GCKErrorCode code

Returns the human-readable description for a given error code.