VR4RoboticArm3/VR4RoboticArm/Library/PackageCache/com.unity.test-framework.performance/Runtime/PerformanceTestException.cs
IonutMocanu 1d45ac8df0 Main1
2025-09-15 21:53:38 +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) { }
}
}