Bug 275106 - Add JavaDoc comments to non-generated Java files. r=darin

This commit is contained in:
pedemont@us.ibm.com
2004-12-21 17:36:55 +00:00
parent c0b51904fb
commit f5602b30bc
4 changed files with 195 additions and 25 deletions
+13 -11
View File
@@ -37,26 +37,28 @@
package org.mozilla.xpcom;
/**
* This exception is thrown whenever an internal XPCOM/Gecko error occurs.
* The internal Mozilla error ID is contained in the message.
*/
public final class XPCOMException extends RuntimeException {
/**
* Constructs a new XPCOMException instance.
*/
public XPCOMException() {
super();
}
/**
* Constructs a new XPCOMException instance.
*
* @param message detailed message of exception
*/
public XPCOMException(String message) {
super(message);
}
/* 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);
}*/
}