Replace a few rejections with throw (#590)

This commit is contained in:
Schuyler Cebulskie
2016-09-03 16:36:54 -04:00
committed by Amish Shah
parent 44b34154e8
commit 64d89b3748
2 changed files with 2 additions and 4 deletions

View File

@@ -196,8 +196,7 @@ class ClientDataResolver {
const file = path.resolve(resource);
const stat = fs.statSync(file);
if (!stat.isFile()) {
reject(new Error(`The file could not be found: ${file}`));
return;
throw new Error(`The file could not be found: ${file}`);
}
fs.readFile(file, (err, data) => {