Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
1999-07-15 02:48:07 +00:00
|
|
|
*
|
2012-05-21 11:12:37 +00:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1999-07-15 02:48:07 +00:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
#include "nsIException.idl"
|
1999-07-15 02:48:07 +00:00
|
|
|
|
2009-04-21 23:09:29 +00:00
|
|
|
%{ C++
|
2011-09-19 16:34:49 +00:00
|
|
|
#include "jsapi.h"
|
2009-04-21 23:09:29 +00:00
|
|
|
%}
|
|
|
|
|
|
|
|
[ptr] native xpcexJSContextPtr(JSContext);
|
|
|
|
native xpcexJSVal(jsval);
|
|
|
|
|
|
|
|
[scriptable, uuid(cac29630-7bf2-4e22-811b-46855a7d5af0)]
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
interface nsIXPCException : nsIException
|
1999-07-15 02:48:07 +00:00
|
|
|
{
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
// inherits methods from nsIException
|
1999-07-15 02:48:07 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
void initialize(in string aMessage,
|
|
|
|
in nsresult aResult,
|
|
|
|
in string aName,
|
|
|
|
in nsIStackFrame aLocation,
|
|
|
|
in nsISupports aData,
|
|
|
|
in nsIException aInner);
|
2009-04-21 23:09:29 +00:00
|
|
|
|
|
|
|
[noscript] xpcexJSVal stealJSVal();
|
|
|
|
[noscript] void stowJSVal(in xpcexJSContextPtr cx,
|
|
|
|
in xpcexJSVal val);
|
1999-07-15 02:48:07 +00:00
|
|
|
};
|
|
|
|
|
1999-08-20 23:11:30 +00:00
|
|
|
/* this goes into the C++ header verbatim. */
|
|
|
|
%{ C++
|
|
|
|
/********************************************************/
|
|
|
|
// {5632BF70-51EC-11d3-9896-006008962422}
|
|
|
|
#define NS_XPCEXCEPTION_CID \
|
|
|
|
{ 0x5632bf70, 0x51ec, 0x11d3, \
|
|
|
|
{ 0x98, 0x96, 0x0, 0x60, 0x8, 0x96, 0x24, 0x22 } }
|
|
|
|
%}
|
|
|
|
|