Rasagar/Library/PackageCache/com.unity.test-framework.performance/Runtime/PerformanceTestException.cs
2024-08-26 23:07:20 +03:00

19 lines
527 B
C#

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) { }
}
}