From 13ae16997d4bbca14e255d5989d1c44a76eac72c Mon Sep 17 00:00:00 2001 From: Valerio Virgillito Date: Wed, 16 May 2012 15:23:48 -0700 Subject: montage v.0.10 integration Signed-off-by: Valerio Virgillito --- node_modules/montage/core/exception.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'node_modules/montage/core/exception.js') diff --git a/node_modules/montage/core/exception.js b/node_modules/montage/core/exception.js index 4cca326d..e77afeb4 100755 --- a/node_modules/montage/core/exception.js +++ b/node_modules/montage/core/exception.js @@ -88,7 +88,7 @@ var Exception = exports.Exception = Montage.create(Montage,/** @lends module:mon toString: { enumerable: false, value: function() { - return "Exception: " + (message !== null ? message + " " : null) + (target !== null ? target + " " : null) + (method !== null ? method + " " : null); + return "Exception: " + (this.message !== null ? this.message + " " : null) + (this.target !== null ? this.target + " " : null) + (this.method !== null ? this.method + " " : null); } } -- cgit v1.2.3