public void AddThrowClass(CodeNodeBuilder builder, Accessibility accessbility = Accessibility.Private, bool shouldShowInEditor = false)
        {
            var accessStr = accessbility.ToString().ToLower();

            if (!shouldShowInEditor)
            {
                builder.AttributeHideEditor();
            }
            builder.AddNode($"{accessStr} static class {_className} ", node => {
                for (var i = 0; i < exceptions.Count; i++)
                {
                    // Note to self : Don't add NoInlining to throw helpers, they actually make performance worse
                    // Maybe we can refer to these
                    // https://source.dot.net/#System.Memory/System/ThrowHelper.cs,73669ffe9b1ee4f4
                    // https://gist.github.com/benaadams/216ed9516dc4e67728fdef1a77574f96
                    var methodName = ThrowExceptionName(i);
                    node.State($"public static void {methodName}() => throw Create{methodName}").NewLine();
                    node.AttributeMethodImpl(MethodImplOptions.NoInlining);
                    node.State($"public static System.Exception Create{ThrowExceptionName(i)}() => {exceptions[i]}");
                }
            });
        }