TestCaseTimeoutException
using System;
using System.Runtime.CompilerServices;
using System.Runtime.Serialization;
namespace NUnit.Framework.Internal
{
[Serializable]
[System.Runtime.CompilerServices.NullableContext(1)]
[System.Runtime.CompilerServices.Nullable(0)]
public class TestCaseTimeoutException : Exception
{
public TestCaseTimeoutException()
{
}
public TestCaseTimeoutException(string message)
: base(message)
{
}
public TestCaseTimeoutException(string message, Exception inner)
: base(message, inner)
{
}
protected TestCaseTimeoutException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}