untangle-puzzlegame/Library/PackageCache/com.unity.test-framework.performance@fb0dc592af8b/Runtime/PerformanceTestException.cs
2025-04-17 17:33:08 -04: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) { }
}
}