Merge branch 'master' into refactor-global-dependencies

This commit is contained in:
Kiwi
2017-08-24 13:49:46 +02:00
committed by GitHub
+1 -1
View File
@@ -5,7 +5,7 @@
class ExtendableError {
constructor(message = null) {
this.message = message;
this.stack = (new Error()).stack;
this.stack = (new Error(message)).stack;
}
}