InvalidDataSourceException
InvalidTestFixtureException is thrown when an appropriate test
fixture constructor using the provided arguments cannot be found.
using System;
using System.Runtime.CompilerServices;
namespace NUnit.Framework.Internal
{
[Serializable]
[NullableContext(1)]
[Nullable(0)]
public class InvalidDataSourceException : Exception
{
public InvalidDataSourceException()
{
}
public InvalidDataSourceException(string message)
: base(message)
{
}
public InvalidDataSourceException(string message, Exception inner)
: base(message, inner)
{
}
}
}