Renci.SshNet.SshMessageFactory.CreateMessageTypeNotSupportedException C# (CSharp) Method

CreateMessageTypeNotSupportedException() private static method

private static CreateMessageTypeNotSupportedException ( byte messageNumber ) : SshException
messageNumber byte
return Renci.SshNet.Common.SshException
        private static SshException CreateMessageTypeNotSupportedException(byte messageNumber)
        {
            throw new SshException(string.Format(CultureInfo.InvariantCulture, "Message type {0} is not supported.", messageNumber));
        }