Rasagar/Library/PackageCache/com.unity.test-framework.performance/Runtime/PerformanceTestException.cs

19 lines
527 B
C#
Raw Normal View History

2024-08-26 13:07:20 -07:00
using System;
namespace Unity.PerformanceTesting.Exceptions
{
/// <summary>
/// Performance test exception.
/// </summary>
[Serializable]
public class PerformanceTestException : System.Exception
{
/// <summary>
/// Performance test exception. Used to indicate failures while running a performance test.
/// </summary>
/// <param name="message">Exception message.</param>
public PerformanceTestException(string message)
: base(message) { }
}
}