aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/core/exception.js
diff options
context:
space:
mode:
authorValerio Virgillito2012-05-16 15:23:48 -0700
committerValerio Virgillito2012-05-16 15:23:48 -0700
commit13ae16997d4bbca14e255d5989d1c44a76eac72c (patch)
treed9ebb1dcc6bebee4cb910b950ecb67c1a2d593cd /node_modules/montage/core/exception.js
parent99f16ae08fbb0a6dfe6008c9833f2253b18c19e5 (diff)
downloadninja-13ae16997d4bbca14e255d5989d1c44a76eac72c.tar.gz
montage v.0.10 integration
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
Diffstat (limited to 'node_modules/montage/core/exception.js')
-rwxr-xr-xnode_modules/montage/core/exception.js2
1 files changed, 1 insertions, 1 deletions
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
88 toString: { 88 toString: {
89 enumerable: false, 89 enumerable: false,
90 value: function() { 90 value: function() {
91 return "Exception: " + (message !== null ? message + " " : null) + (target !== null ? target + " " : null) + (method !== null ? method + " " : null); 91 return "Exception: " + (this.message !== null ? this.message + " " : null) + (this.target !== null ? this.target + " " : null) + (this.method !== null ? this.method + " " : null);
92 } 92 }
93 } 93 }
94 94