Files
AR-Menu/Library/PackageCache/com.unity.test-framework.performance@fb0dc592af8b/Runtime/PerformanceTestException.cs
2025-11-30 08:35:03 +02:00

19 lines
545 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) { }
}
}