зеркало из https://github.com/mozilla/pjs.git
Bug 275106 - Add JavaDoc comments to non-generated Java files. r=darin
Original committer: pedemont%us.ibm.com Original revision: 1.3 Original date: 2004/12/21 17:36:55
This commit is contained in:
Родитель
ebe22a7b9c
Коммит
5d85dd0b26
|
@ -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);
|
||||
}*/
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче