UnityEngine.Networking.NetworkManager.OnServerErrorInternal C# (CSharp) Method

OnServerErrorInternal() private method

private OnServerErrorInternal ( NetworkMessage netMsg ) : void
netMsg NetworkMessage
return void
        internal void OnServerErrorInternal(NetworkMessage netMsg)
        {
            if (LogFilter.logDebug)
            {
                Debug.Log("NetworkManager:OnServerErrorInternal");
            }
            netMsg.ReadMessage<ErrorMessage>(s_ErrorMessage);
            this.OnServerError(netMsg.conn, s_ErrorMessage.errorCode);
        }