Skip to main content
API Reference SwiftyNsdk

NsdkError

Errors thrown by the NSDK API....

Declaration

enum NsdkError

Summary

Errors thrown by the NSDK API. NsdkError a subset of all the ARDK_Statuscodes returned by the C API, containing just those that can occur in the Swift environment.


Properties

NameTypeSummary
var localizedDescriptionString
Retrieve the localized description for this error.

Operators

NameTypeSummary
static func != Bool
Returns a Boolean value indicating whether two values are not equal.
Inequality is the inverse of equality. For any values a and b, a != b
implies that a == b is false.
This is the default implementation of the not-equal-to operator (!=)
for any type that conforms to Equatable.
- Parameters:
- lhs: A value to compare.
- rhs: Another value to compare.
static func == Bool
Returns a Boolean value indicating whether two values are equal.
Equality is the inverse of inequality. For any values a and b,
a == b implies that a != b is false.
- Parameters:
- lhs: A value to compare.
- rhs: Another value to compare.

Relationships

conforms to: Swift.Error
conforms to: Swift.Equatable
conforms to: Swift.Sendable
conforms to: Swift.SendableMetatype