Exemple #1
0
        public string getContent()
        {
            ExceptionExtractor extractor = new ExceptionExtractor(this.method);
            string             ret       = string.Empty;

            if (extractor.validate())
            {
                ret = string.Format("{0}\n{1}", this.content.getContent(), extractor.getTagValue());
            }
            else
            {
                ret = this.content.getContent();
            }

            return(ret);;
        }
Exemple #2
0
 public ExceptionExtractorTests()
 {
     _extractor = new ExceptionExtractor();
 }