(no commit message)
[utils] / crawler / basic / src / org / wamblee / crawler / PageException.java
index a48d3d5f3d77bbfa407dd920db8ad0b6ba9b7c27..22a1e1bb11fe4ffcee9b59065002de2bfc9a9cdc 100644 (file)
 package org.wamblee.crawler;
 
 /**
- * 
+ * Exception thrown when there is a problem in retrieving or transforming the 
+ * page. 
  */
 public class PageException extends Exception {
 
+    /**
+     * Constructs the exception. 
+     * @param aMsg Message. 
+     */
     public PageException(String aMsg) { 
         super(aMsg); 
     }
     
+    /**
+     * Constructs the exception.
+     * @param aMsg Message. 
+     * @param aCause Cause of the exception. 
+     */
     public PageException(String aMsg, Throwable aCause) { 
         super(aMsg, aCause);
     }