mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
15 lines
336 B
C#
15 lines
336 B
C#
using System.IO;
|
|
|
|
using IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.System_Plugs.System.IO
|
|
{
|
|
[Plug(Target = typeof(FileNotFoundException))]
|
|
public static class FileNotFoundExceptionImpl
|
|
{
|
|
public static string ToString(FileNotFoundException aThis)
|
|
{
|
|
return "FileNotFoundException";
|
|
}
|
|
}
|
|
}
|