mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
20 lines
565 B
C#
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()");
|
|
}
|
|
}
|
|
}
|