Bug 305815 - Better organize Java interfaces. Implement getGREPathWithProperties(). r=bsmedberg, r=lbustelo. Not part of default build.

git-svn-id: svn://10.0.0.236/trunk@183165 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
pedemont%us.ibm.com
2005-10-28 01:59:05 +00:00
parent d1bfc94a99
commit 133ff28d62
20 changed files with 2240 additions and 316 deletions

View File

@@ -37,21 +37,21 @@
package org.mozilla.xpcom;
import java.lang.*;
/**
* This exception is thrown whenever an internal XPCOM/Gecko error occurs.
* You can query the error ID returned by XPCOM by checking
* <code>errorcode</code> field.
*/
public final class XPCOMException extends RuntimeException {
public class XPCOMException extends RuntimeException {
/**
* The XPCOM error value.
*/
public long errorcode;
private static final long serialVersionUID = 198521829884000593L;
/**
* Constructs a new XPCOMException instance, with a default error
* (NS_ERROR_FAILURE) and message.