Cosmos/source/Cosmos.System2_Plugs/System/IO/FileLoadExceptionImpl.cs

20 lines
565 B
C#

using System.IO;
using IL2CPU.API.Attribs;
using System;
namespace Cosmos.System2_Plugs.System.IO
{
[Plug(Target = typeof(FileLoadException))]
public static class FileLoadExceptionImpl
{
public static string FormatFileLoadExceptionMessage(string fileName, int hResult)
{
throw new NotImplementedException("FormatFileLoadExceptionMessage");
}
public static string ToString(FileLoadException aThis)
{
throw new NotImplementedException("FileLoadException.ToString()");
}
}
}