diff --git a/OfficeIMO.Word/WordSection.cs b/OfficeIMO.Word/WordSection.cs index ce21fd82..1cec042f 100644 --- a/OfficeIMO.Word/WordSection.cs +++ b/OfficeIMO.Word/WordSection.cs @@ -250,7 +250,8 @@ internal WordSection(WordDocument wordDocument, SectionProperties sectionPropert } else if (element is SectionType) { } else if (element is TitlePage) { } else { - throw new NotImplementedException("This isn't implemented yet?"); + Debug.WriteLine($"The section '{element.GetType().Name}' is currently not supported. " + + "To request support, open an issue at https://github.com/EvotecIT/OfficeIMO/issues"); } } @@ -381,4 +382,4 @@ internal static HeaderFooterValues GetType(string type) { } } } -} \ No newline at end of file +}