Update of /cvsroot/archive-access/archive-access/projects/wayback/src/java/org/archive/wayback/exception
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv901/src/java/org/archive/wayback/exception
Modified Files:
WaybackException.java BadQueryException.java
Log Message:
lots of javadoc comments
Index: WaybackException.java
===================================================================
RCS file: /cvsroot/archive-access/archive-access/projects/wayback/src/java/org/archive/wayback/exception/WaybackException.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** WaybackException.java 18 Oct 2005 02:30:49 -0000 1.1
--- WaybackException.java 19 Oct 2005 01:22:36 -0000 1.2
***************
*** 1,4 ****
--- 1,33 ----
+ /* WaybackException
+ *
+ * Created on 2005/10/18 14:00:00
+ *
+ * Copyright (C) 2005 Internet Archive.
+ *
+ * This file is part of the Wayback Machine (crawler.archive.org).
+ *
+ * Wayback Machine is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser Public License as published by
+ * the Free Software Foundation; either version 2.1 of the License, or
+ * any later version.
+ *
+ * Wayback Machine is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser Public License
+ * along with Wayback Machine; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
package org.archive.wayback.exception;
+ /**
+ * Base class for Wayback internal exceptions.
+ *
+ * @author Brad Tofel
+ * @version $Date$, $Revision$
+ */
public class WaybackException extends Exception {
***************
*** 8,11 ****
--- 37,45 ----
private static final long serialVersionUID = 1L;
+ /**
+ * Constructor
+ *
+ * @param message
+ */
public WaybackException(String message) {
super(message);
***************
*** 16,20 ****
*/
public static void main(String[] args) {
- // TODO Auto-generated method stub
}
--- 50,53 ----
Index: BadQueryException.java
===================================================================
RCS file: /cvsroot/archive-access/archive-access/projects/wayback/src/java/org/archive/wayback/exception/BadQueryException.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** BadQueryException.java 18 Oct 2005 02:30:49 -0000 1.1
--- BadQueryException.java 19 Oct 2005 01:22:36 -0000 1.2
***************
*** 1,4 ****
--- 1,33 ----
+ /* BadQueryException
+ *
+ * Created on 2005/10/18 14:00:00
+ *
+ * Copyright (C) 2005 Internet Archive.
+ *
+ * This file is part of the Wayback Machine (crawler.archive.org).
+ *
+ * Wayback Machine is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser Public License as published by
+ * the Free Software Foundation; either version 2.1 of the License, or
+ * any later version.
+ *
+ * Wayback Machine is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser Public License
+ * along with Wayback Machine; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
package org.archive.wayback.exception;
+ /**
+ * Exception for malformed user query.
+ *
+ * @author Brad Tofel
+ * @version $Date$, $Revision$
+ */
public class BadQueryException extends WaybackException {
***************
*** 8,11 ****
--- 37,45 ----
private static final long serialVersionUID = 1L;
+ /**
+ * Constructor
+ *
+ * @param message
+ */
public BadQueryException(String message) {
super(message);
***************
*** 16,20 ****
*/
public static void main(String[] args) {
- // TODO Auto-generated method stub
}
--- 50,53 ----
|