Skip to content

Commit e6d0329

Browse files
committed
fix(error-handling): Disable throwing for now (see #134)
BREAKING CHANGE: Error Handler will not rethrow error!!
1 parent 0e7dd7b commit e6d0329

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/errorhandler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@ export class FabricErrorHandler implements ErrorHandler {
5757
Fabric.logError(err);
5858
} catch (e) { }
5959
// IMPORTANT: Rethrow the error otherwise it gets swallowed
60-
throw err;
60+
// TODO-make me configurable throw err;
6161
}
6262
}

0 commit comments

Comments
 (0)