Original committer: pedemont%us.ibm.com
Original revision: 1.2
Original date: 2004/11/23 16:59:12
This commit is contained in:
pedemont%us.ibm.com 2006-09-27 15:16:03 +00:00
Родитель 018909a569
Коммит 854af6ce19
1 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -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);
}
}*/
}