MakeUserReady() public method

Makes the error collection user ready.
public MakeUserReady ( ) : string
return string
        public string InvokeService(string name, string action, string args)
        {
            const string servicesAssemblyName = "Dev2.Runtime.Services.{0}, Dev2.Runtime.Services";

            try
            {
                var serviceType = Type.GetType(string.Format(servicesAssemblyName, name));
                if(serviceType != null)
                {
                    var method = serviceType.GetMethod(action);
                    if(method != null)
                    {
                        var service = method.IsStatic ? null : Activator.CreateInstance(serviceType);
                        var actionResult = method.Invoke(service, new object[] { args });
                        if(actionResult != null)
                        {
                            return actionResult.ToString();
                        }
                    }
                }
            }
            catch(Exception ex)
            {
                var error = new ErrorResultTO();
                error.AddError(ex.Message);
                return error.MakeUserReady();
            }
            return string.Empty;
        }