No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }