private static string[] GetParameterPhrases(IParameterSymbol symbol)
        {
            if (IsMessageParameter(symbol))
            {
                return(Constants.Comments.ExceptionCtorMessageParamPhrase);
            }

            if (IsExceptionParameter(symbol))
            {
                return(Constants.Comments.ExceptionCtorExceptionParamPhrase);
            }

            if (symbol.IsSerializationInfoParameter())
            {
                return(Constants.Comments.CtorSerializationInfoParamPhrase);
            }

            if (symbol.IsStreamingContextParameter())
            {
                return(Constants.Comments.CtorStreamingContextParamPhrase);
            }

            return(Array.Empty <string>());
        }