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