Practice_Unity/Library/PackageCache/com.unity.test-framework.performance@0840f58e4562/Runtime/PerformanceTestException.cs
2025-10-15 17:21:20 +09:00

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