add default constructor

This commit is contained in:
nicolson%netscape.com 2002-07-12 21:07:40 +00:00
parent 8bcb659f61
commit 8272ce3448

View File

@ -47,6 +47,10 @@ public class SSLSocketException extends java.net.SocketException {
private int errcode = -1; private int errcode = -1;
public SSLSocketException() {
super();
}
public SSLSocketException(String msg) { public SSLSocketException(String msg) {
super(msg); super(msg);
} }