AOUT.Ch4.LogAn.Test.StubService.LogError C# (CSharp) Method

LogError() public method

public LogError ( string message ) : void
message string
return void
        public void LogError(string message)
        {
            if(ToThrow!=null)
            {
                throw ToThrow;
            }
        }
StubService