Java 1.3 compatibility

git-svn-id: svn://10.0.0.236/trunk@165638 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
pedemont%us.ibm.com
2004-11-23 16:59:12 +00:00
parent 6ddef95041
commit 775cbc9c9d

View File

@@ -47,12 +47,16 @@ public final class XPCOMException extends RuntimeException {
super(message);
}
public XPCOMException(String message, Throwable cause) {
/* The RuntimeException constructors that take a Throwable parameter are only
available starting in Java 1.4. Commenting out for now to allow use by
Java 1.3
*/
/* public XPCOMException(String message, Throwable cause) {
super(message, cause);
}
public XPCOMException(Throwable cause) {
super(cause);
}
}*/
}