Cosmos/source2/IL2PCU/Cosmos.IL2CPU/ExceptionHelper.cs
mterwoord_cp acaa8e0a89
2009-10-17 13:45:47 +00:00

13 lines
323 B
C#

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