diff options
Diffstat (limited to 'lib/handlebars/utils.js')
-rw-r--r-- | lib/handlebars/utils.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/handlebars/utils.js b/lib/handlebars/utils.js index 4202c77..b814b66 100644 --- a/lib/handlebars/utils.js +++ b/lib/handlebars/utils.js @@ -2,8 +2,13 @@ var Handlebars = require("handlebars"); // BEGIN(BROWSER) Handlebars.Exception = function(message) { - this.message = message; + var tmp = Error.prototype.constructor.apply(this, arguments); + + for (var p in tmp) { + if (tmp.hasOwnProperty(p)) { this[p] = tmp[p]; } + } }; +Handlebars.Exception.prototype = new Error; // Build out our basic SafeString type Handlebars.SafeString = function(string) { |