refactor: More appropriate exceptions

This commit is contained in:
Chris Cameron
2018-06-07 12:29:07 -04:00
parent cc115bafad
commit 086aee8167

View File

@@ -97,8 +97,7 @@ namespace ICD.Common.Utils
[PublicAPI]
public static void RestartProgram()
{
// TODO
throw new NotImplementedException();
throw new NotSupportedException();
}
/// <summary>
@@ -107,8 +106,7 @@ namespace ICD.Common.Utils
[PublicAPI]
public static void Reboot()
{
// TODO
throw new NotImplementedException();
throw new NotSupportedException();
}
#endregion