From a514d73cc8fb55794ccae2bbcf8ac391cbbb8dbe Mon Sep 17 00:00:00 2001 From: Vladimir Enchev Date: Tue, 10 Mar 2015 10:54:27 +0200 Subject: [PATCH] component builder exceptions restored --- ui/builder/component-builder.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/builder/component-builder.ts b/ui/builder/component-builder.ts index 835848d37..fa136035a 100644 --- a/ui/builder/component-builder.ts +++ b/ui/builder/component-builder.ts @@ -62,7 +62,7 @@ export function getComponentModule(elementName: string, namespace: string, attri // Create instance of the component. instance = new instanceType(); } catch (ex) { - //throw new Error("Cannot create module " + moduleId + ". " + ex); + throw new Error("Cannot create module " + moduleId + ". " + ex); } if (instance && instanceModule) {