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/compiler.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/compiler.js')
-rw-r--r-- | lib/handlebars/compiler/compiler.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/handlebars/compiler/compiler.js b/lib/handlebars/compiler/compiler.js index 6656a3f..c020e1f 100644 --- a/lib/handlebars/compiler/compiler.js +++ b/lib/handlebars/compiler/compiler.js @@ -1,4 +1,4 @@ -import { Exception } from "../utils"; +import Exception from "../exception"; import { template } from "../runtime"; import { parse } from "./base"; import { JavaScriptCompiler } from "./javascript-compiler"; |