Files
2026-08-27 10:56:38 -06:00

17 lines
347 B
C#

namespace System;
internal static class NotImplemented
{
internal static Exception ByDesign => new NotImplementedException();
internal static Exception ByDesignWithMessage(string message)
{
return new NotImplementedException(message);
}
internal static Exception ActiveIssue(string issue)
{
return new NotImplementedException();
}
}