System.IO.FileLoadException
namespace System.IO
{
public class FileLoadException : IOException
{
public string FileName { get; }
public string FusionLog { get; }
public FileLoadException();
protected FileLoadException(SerializationInfo info, StreamingContext context);
public FileLoadException(string message);
public FileLoadException(string message, Exception inner);
public FileLoadException(string message, string fileName);
public FileLoadException(string message, string fileName, Exception inner);
}
}