Cosmos/source/Cosmos.System2_Plugs/System/IO/FileLoadExceptionImpl.cs
2018-02-04 19:13:31 +00:00

21 lines
565 B
C#

using System;
using System.IO;
using IL2CPU.API.Attribs;
namespace Cosmos.System_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()");
}
}
}