]> source.dussan.org Git - poi.git/commitdiff
highlight some exceptions
authorPJ Fanning <fanningpj@apache.org>
Mon, 13 Dec 2021 17:55:30 +0000 (17:55 +0000)
committerPJ Fanning <fanningpj@apache.org>
Mon, 13 Dec 2021 17:55:30 +0000 (17:55 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895912 13f79535-47bb-0310-9956-ffa450edef68

poi-ooxml/src/main/java/org/apache/poi/xslf/usermodel/XMLSlideShow.java

index d8ab3df4d4e89b36ab846816522aba2ce6354f7f..2e514dab5589364bb7f8044ec1160aec9c296794 100644 (file)
@@ -105,6 +105,12 @@ public class XMLSlideShow extends POIXMLDocument
         this(empty());
     }
 
+    /**
+     * @param pkg OPC package
+     * @throws POIXMLException a RuntimeException that can be caused by invalid OOXML data
+     * @throws RuntimeException a number of other runtime exceptions can be thrown, especially if there are problems with the
+     * input format
+     */
     public XMLSlideShow(OPCPackage pkg) {
         super(pkg);
 
@@ -120,6 +126,13 @@ public class XMLSlideShow extends POIXMLDocument
         }
     }
 
+    /**
+     * @param is InputStream
+     * @throws IOException
+     * @throws POIXMLException a RuntimeException that can be caused by invalid OOXML data
+     * @throws RuntimeException a number of other runtime exceptions can be thrown, especially if there are problems with the
+     * input format
+     */
     public XMLSlideShow(InputStream is) throws IOException {
         this(PackageHelper.open(is));
     }