Bari.Core.Commands.Clean.CleanCommand.CleanWarning C# (CSharp) Method

CleanWarning() private method

private CleanWarning ( Exception ex ) : void
ex System.Exception
return void
        private void CleanWarning(Exception ex)
        {
            output.Warning(String.Format("Failed to clean target root: {0}", ex.Message),
                new[]
                {
                    "A command prompt may have its current directory set there",
                    "Maybe the process is running"
                });
        }