From 9af77dc835b50d957c308d6de83d26b089ec6e43 Mon Sep 17 00:00:00 2001 From: Amir Bandeali Date: Tue, 22 May 2018 07:40:24 -0700 Subject: Add errMsg when throwing on unrecognized error --- packages/sol-compiler/src/utils/compiler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages') diff --git a/packages/sol-compiler/src/utils/compiler.ts b/packages/sol-compiler/src/utils/compiler.ts index 3731385e2..715ecd6f0 100644 --- a/packages/sol-compiler/src/utils/compiler.ts +++ b/packages/sol-compiler/src/utils/compiler.ts @@ -71,7 +71,7 @@ export function getNormalizedErrMsg(errMsg: string): string { const SOLIDITY_FILE_EXTENSION_REGEX = /(.*\.sol)/; const errPathMatch = errMsg.match(SOLIDITY_FILE_EXTENSION_REGEX); if (_.isNull(errPathMatch)) { - throw new Error('Could not find a path in error message'); + throw new Error(`Could not find a path in error message: ${errMsg}`); } const errPath = errPathMatch[0]; const baseContract = path.basename(errPath); -- cgit v1.2.3