blob: e9121675dcee771984fbfe65cdf5696448c5a5e4 [file] [log] [blame]
//-------------------------------------------------------------------------------------------------------
// 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]);
}
}