StoryTeller.Engine.Frame.AppendException C# (CSharp) Method

AppendException() public method

public AppendException ( string text ) : void
text string
return void
        public void AppendException(string text)
        {
            if (_exceptionText != String.Empty)
            {
                _exceptionText += "\n";
            }

            _exceptionText += text;
        }

Usage Example

コード例 #1
0
 public void CaptureException(string exceptionString)
 {
     _current.AppendException(exceptionString);
 }