Files

15 lines
386 B
C#
Raw Permalink Normal View History

2025-01-17 13:10:42 +01:00
using System;
namespace UnityEditor.TestTools.TestRunner.TestRun
{
internal class RequiredTestRunDataMissingException : Exception
{
public RequiredTestRunDataMissingException(string fieldName) : base($"The test run data '{fieldName}' is required and could not be found.")
{
FieldName = fieldName;
}
public string FieldName;
}
}