StoryTeller.StoryTellerAssert.ToDisplayMessage C# (CSharp) Method

ToDisplayMessage() public static method

public static ToDisplayMessage ( this ex ) : string
ex this
return string
        public static string ToDisplayMessage(this Exception ex)
        {
            if (ex is StorytellerAssertionException) return ex.Message;

            return ex.ToString();
        }
StoryTellerAssert