www.pudn.com > encryption.rar > AuthException.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 AuthException extends IOException {
	public AuthException() {
	}

	public AuthException (String detail) {
	super (detail);
	}
}