X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=crawler%2Fbasic%2Fsrc%2Forg%2Fwamblee%2Fcrawler%2FPageException.java;h=22a1e1bb11fe4ffcee9b59065002de2bfc9a9cdc;hb=071ee3b92d229ef0725928e19820fcd1084d11a0;hp=a48d3d5f3d77bbfa407dd920db8ad0b6ba9b7c27;hpb=4b977a8e648526ca185298819b7df94cf73b9332;p=utils diff --git a/crawler/basic/src/org/wamblee/crawler/PageException.java b/crawler/basic/src/org/wamblee/crawler/PageException.java index a48d3d5f..22a1e1bb 100644 --- a/crawler/basic/src/org/wamblee/crawler/PageException.java +++ b/crawler/basic/src/org/wamblee/crawler/PageException.java @@ -17,14 +17,24 @@ 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); }