Cosmos/source/Indy.IL2CPU/CustomImplementation/System/ArgumentExceptionImpl.cs
Dokugogagoji_cp 24c47639ca ACPIManager stub
Some stupid warning removed for now
CultureInfo Plugs merged
Added VHD option (still disabled)
Some temporary plugs
2009-03-22 12:56:47 +00:00

19 lines
374 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Indy.IL2CPU.Plugs;
namespace Indy.IL2CPU.CustomImplementation
{
[Plug(Target = typeof(ArgumentException))]
public static class ArgumentExceptionImpl
{
public static String get_Message()
{
return "";
}
}
}