暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

PerformanceTestException.cs 527B

123456789101112131415161718
  1. using System;
  2. namespace Unity.PerformanceTesting.Exceptions
  3. {
  4. /// <summary>
  5. /// Performance test exception.
  6. /// </summary>
  7. [Serializable]
  8. public class PerformanceTestException : System.Exception
  9. {
  10. /// <summary>
  11. /// Performance test exception. Used to indicate failures while running a performance test.
  12. /// </summary>
  13. /// <param name="message">Exception message.</param>
  14. public PerformanceTestException(string message)
  15. : base(message) { }
  16. }
  17. }