protected internal string LogUnknownError(Exception ex, params string[] @params)
        {
            string returnValue = GetUnknownText();
            var    exc         = new FileManagerException(GetSystemErrorText(@params), ex);

            Exceptions.LogException(exc);
            return(returnValue);
        }
Esempio n. 2
0
		protected internal string LogUnknownError(Exception ex, params string[] @params)
		{
			string returnValue = GetUnknownText();
			FileManagerException exc = new FileManagerException(GetSystemErrorText(@params), ex);
			Exceptions.LogException(exc);
			return returnValue;
		}