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

CreateMessageNotSupportedException() private static method

private static CreateMessageNotSupportedException ( string messageName ) : SshException
messageName string
return Renci.SshNet.Common.SshException
        private static SshException CreateMessageNotSupportedException(string messageName)
        {
            throw new SshException(string.Format(CultureInfo.InvariantCulture, "Message '{0}' is not supported.", messageName));
        }