From b0a78d70859ff35df993c48efa93088cdbd96423 Mon Sep 17 00:00:00 2001 From: Nick Vella Date: Tue, 2 Jul 2019 18:40:20 +1000 Subject: [PATCH] ssg: StaticSiteClient: not implemented exception for SendAuthenticatedHTTPRequest --- .../OpenLiveWriter.BlogClient/Clients/StaticSiteClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/managed/OpenLiveWriter.BlogClient/Clients/StaticSiteClient.cs b/src/managed/OpenLiveWriter.BlogClient/Clients/StaticSiteClient.cs index a667cb00..a3ca91af 100644 --- a/src/managed/OpenLiveWriter.BlogClient/Clients/StaticSiteClient.cs +++ b/src/managed/OpenLiveWriter.BlogClient/Clients/StaticSiteClient.cs @@ -134,7 +134,7 @@ namespace OpenLiveWriter.BlogClient.Clients => new BlogPostCategory[0]; public HttpWebResponse SendAuthenticatedHttpRequest(string requestUri, int timeoutMs, HttpRequestFilter filter) - => throw new Exception("HTTP requests not implemented for static sites"); // TODO This is used for downloading writing manifest XMLs. Throw an exception for now. + => throw new NotImplementedException("HTTP requests not implemented for static sites"); // TODO This is used for downloading writing manifest XMLs. Throw an exception for now. public BlogInfo[] GetImageEndpoints() => new BlogInfo[0];