diff options
author | kpdecker <kpdecker@gmail.com> | 2013-10-01 20:52:14 -0500 |
---|---|---|
committer | kpdecker <kpdecker@gmail.com> | 2013-10-01 21:14:18 -0500 |
commit | 6a23391a9a72e263248f6ffa2535cfae67a2b135 (patch) | |
tree | b197bd07134aa2f38a33af4d3e6f9736892bd0e9 /lib/handlebars/compiler/ast.js | |
parent | 80b748ad3e34b29249af134e214d57fec92e22a4 (diff) | |
download | handlebars.js-6a23391a9a72e263248f6ffa2535cfae67a2b135.zip handlebars.js-6a23391a9a72e263248f6ffa2535cfae67a2b135.tar.gz handlebars.js-6a23391a9a72e263248f6ffa2535cfae67a2b135.tar.bz2 |
Break exception class out into a standalone module
Diffstat (limited to 'lib/handlebars/compiler/ast.js')
-rw-r--r-- | lib/handlebars/compiler/ast.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/handlebars/compiler/ast.js b/lib/handlebars/compiler/ast.js index b61fa0e..c6c8993 100644 --- a/lib/handlebars/compiler/ast.js +++ b/lib/handlebars/compiler/ast.js @@ -1,4 +1,4 @@ -import { Exception } from "../utils"; +import Exception from "../exception"; var exports = {}; |