mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 21:08:51 +00:00
15 lines
389 B
C#
15 lines
389 B
C#
using System.IO;
|
|
using IL2CPU.API.Attribs;
|
|
using System;
|
|
|
|
namespace Cosmos.System2_Plugs.System.IO
|
|
{
|
|
[Plug(Target = typeof(FileNotFoundException))]
|
|
public static class FileNotFoundExceptionImpl
|
|
{
|
|
public static string ToString(FileNotFoundException aThis)
|
|
{
|
|
throw new NotImplementedException("FileNotFoundException.ToString()");
|
|
}
|
|
}
|
|
}
|