mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 13:28:41 +00:00
13 lines
324 B
C#
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);
|
|
}
|
|
}
|
|
}
|