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

Original committer: pedemont%us.ibm.com
Original revision: 1.5
Original date: 2005/10/28 01:59:03
This commit is contained in:
pedemont%us.ibm.com 2006-09-27 15:16:12 +00:00
Родитель 751105e874
Коммит b09b984df6
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -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.