Files
GameDevTVObstacleDodge/Library/PackageCache/com.unity.test-framework.performance@0840f58e4562/Runtime/PerformanceTestException.cs

19 lines
524 B
C#
Raw Normal View History

2026-01-08 16:50:20 +00: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) { }
}
}