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

git-svn-id: svn://10.0.0.236/trunk@166922 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
pedemont%us.ibm.com
2004-12-21 17:36:55 +00:00
parent df7f21e3f0
commit 4087bafa72
4 changed files with 195 additions and 25 deletions

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