From 086aee8167ff778bcd5f9dbb51887b18283f9c4a Mon Sep 17 00:00:00 2001 From: Chris Cameron Date: Thu, 7 Jun 2018 12:29:07 -0400 Subject: [PATCH] refactor: More appropriate exceptions --- ICD.Common.Utils/ProcessorUtils.Standard.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ICD.Common.Utils/ProcessorUtils.Standard.cs b/ICD.Common.Utils/ProcessorUtils.Standard.cs index 4ae0d32..d3fd703 100644 --- a/ICD.Common.Utils/ProcessorUtils.Standard.cs +++ b/ICD.Common.Utils/ProcessorUtils.Standard.cs @@ -97,8 +97,7 @@ namespace ICD.Common.Utils [PublicAPI] public static void RestartProgram() { - // TODO - throw new NotImplementedException(); + throw new NotSupportedException(); } /// @@ -107,8 +106,7 @@ namespace ICD.Common.Utils [PublicAPI] public static void Reboot() { - // TODO - throw new NotImplementedException(); + throw new NotSupportedException(); } #endregion