Cosmos/source/Compiler/Indy.IL2CPU.X86/IL/ExceptionHelper.cs
mterwoord_cp 25221ab5a4
2009-09-11 13:35:09 +00:00

13 lines
324 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.IL {
public static class ExceptionHelper {
public static void ThrowNotImplemented(string aError) {
Console.WriteLine(aError);
throw new NotImplementedException(aError);
}
}
}