www.pudn.com > encryption.rar > HashException.java
/*
Christoforos Pirillos @ Villanova University - May 1999
based on code from the book "Java Network Programming" by Hughes
*/
package encryption;
import java.io.*;
/**Can either be created with no detail message or with a detail message
that describes the cause of the exception*/
public class HashException extends IOException {
public HashException() {
}
public HashException (String detail) {
super (detail);
}
}