commonMain.com.yazantarifi.websocketmanager.errors.SocketManagerErrorMessagesManager.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of websockets Show documentation
Show all versions of websockets Show documentation
Socket IO Implementation for Android, IOS Apps - KMM
package com.yazantarifi.websocketmanager.errors
object SocketManagerErrorMessagesManager {
const val ERROR_SDK_INIT = "Socket Manager SDK Configuration Setup Not Completed ... "
const val ERROR_SDK_CONNECTION = "Socket Manager SDK - Connection Failed ... "
const val ERROR_SDK_VALIDATION = "Socket Manager SDK - build Method in Client Manager not Called in Initialization Step"
const val ERROR_SDK_INVALID_LINK = "Socket Manager SDK - Invalid Url to Connect"
const val ERROR_SDK_INVALID_TRSNSPORT = "Socket Manager SDK - Invalid transport, this type is not supported"
const val ERROR_SDK_NOT_CONNECTED = "Socket Manager SDK - This Function Should not be Called before Socket Connected"
}