| 12345678910111213141516171819202122232425 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- try {
- var e = Error("123");
- e.somevalue = "xyz";
- e.stack = "abacaba";
- WScript.Echo("description = " + e.description);
- WScript.Echo("stack = " + e.stack);
- for (var p in e) {
- WScript.Echo(p + " = " + e[p]);
- }
-
- throw e;
- }
- catch (ex) {
- WScript.Echo("----------------------");
- WScript.Echo("description = " + e.description);
- WScript.Echo("stack = " + e.stack);
- for (var p in ex) {
- WScript.Echo(p + " = " + ex[p]);
- }
- }
|