NakamaError

public enum NakamaError: Error

An error that has occured on the server. The error could be result of bad input, or unexpected system error. Check Error Code for more info.

  • Server received an Envelop message but the internal message is unrecognised. Most likely a protocol mismatch.

    Declaration

    Swift

    case missingPayload(String)
  • The message did not include the required data in the correct format.

    Declaration

    Swift

    case badInput(String)
  • Group leave operation not allowed because the user is the last admin.

    Declaration

    Swift

    case groupLastAdmin(String)