Alsing.Text.Tokenizer.ThrowIfImmutable C# (CSharp) Method

ThrowIfImmutable() private method

private ThrowIfImmutable ( ) : void
return void
        private void ThrowIfImmutable() {
            if (IsImmutable)
                throw new Exception("Tokens can not be added to an immutable tokenizer");
        }