InvalidDataSourceException
InvalidTestFixtureException is thrown when an appropriate test
fixture constructor using the provided arguments cannot be found.
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 InvalidDataSourceException : Exception
{
public InvalidDataSourceException()
{
}
public InvalidDataSourceException(string message)
: base(message)
{
}
public InvalidDataSourceException(string message, Exception inner)
: base(message, inner)
{
}
protected InvalidDataSourceException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}