(no commit message)
[utils] / crawler / basic / src / org / wamblee / crawler / Crawler.java
index 07dff3fdb5f7d6c42dfd3feb43ebc30101466c29..201df3fb2dbeab4b4c2a647b2056dae739af3648 100644 (file)
@@ -26,6 +26,7 @@ public interface Crawler {
      * Gets the content for a specific page. 
      * @param aUrl Url of page. 
      * @return Page to retrieve.
+     * @throws PageException In case of problems retrieving the page.
      */
     Page getPage(String aUrl) throws PageException;
     
@@ -33,7 +34,8 @@ public interface Crawler {
      * Gets the content for a specific page. 
      * @param aUrl Url of page. 
      * @param aType Type of page.  
-     * @return Page. 
+     * @return Page.
+     * @throws PageException In case of problems retrieving the page. 
      */
     Page getPage(String aUrl, PageType aType) throws PageException; 
 }