Update of /cvsroot/nutch/playground/src/java/net/nutch/net/protocols
In directory
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10313/src/java/net/nutch/net/protocols
Added Files:
ProtocolException.java
Log Message:
intial commit
--- NEW FILE: ProtocolException.java ---
/* Copyright (c) 2003 The Nutch Organization. All rights reserved. */
/* Use subject to the conditions in http://www.nutch.org/LICENSE.txt. */
package net.nutch.net.protocols;
import java.io.Serializable;
/**
* Base exception for all protocol handlers
*/
public class ProtocolException extends Exception implements Serializable {
public ProtocolException() {
super();
}
public ProtocolException(String message) {
super(message);
}
public ProtocolException(String message, Throwable cause) {
super(message, cause);
}
public ProtocolException(Throwable cause) {
super(cause);
}
}
-------------------------------------------------------
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
_______________________________________________
Nutch-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nutch-cvs