EMOobErrorMessage

Objective-C

@protocol EMOobErrorMessage <EMOobOutgoingMessage, EMOobMessageMeta>

Swift

protocol EMOobErrorMessage : EMOobMessageMeta, EMOobOutgoingMessage

This object allows the client to send some error information to the server.

Since

3.0
  • Gets the error code.

    Since

    3.0

    Declaration

    Objective-C

    @property (nonatomic, readonly) int errorCode;

    Swift

    var errorCode: Int32 { get }

    Return Value

    The error code.

  • Gets the error description.

    Since

    3.0

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly) NSString *errorDescription;

    Swift

    var errorDescription: String! { get }

    Return Value

    The error description.

  • Gets the error stack trace.

    Since

    3.0

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly) NSString *errorStackTrace;

    Swift

    var errorStackTrace: String! { get }

    Return Value

    The error stack trace.

  • Gets the external reference.

    Since

    3.0

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly) NSString *externalRef;

    Swift

    var externalRef: String! { get }

    Return Value

    The external reference.

  • Gets the meta data

    Since

    3.0

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly) NSDictionary *meta;

    Swift

    var meta: [AnyHashable : Any]! { get }

    Return Value

    The meta data.