diff --git a/index.html b/index.html
index 85d142e603..5342d43a3e 100644
--- a/index.html
+++ b/index.html
@@ -27,7 +27,7 @@
THE SOFTWARE.
-->
-
Remix
+ Remix - Solidity IDE
@@ -62,7 +62,7 @@
Contract
Debugger
Analysis
- Docs
+ Docs
diff --git a/src/universal-dapp.js b/src/universal-dapp.js
index 9ab65ba1b3..9ae5d7068a 100644
--- a/src/universal-dapp.js
+++ b/src/universal-dapp.js
@@ -686,11 +686,11 @@ UniversalDApp.prototype.getCallButton = function (args) {
replaceOutput($result, $('').text(err).addClass('error'))
// VM only
} else if (self.executionContext.isVM() && result.vm.exception === 0 && result.vm.exceptionError) {
- replaceOutput($result, $('').text('VM Exception: ' + result.vm.exceptionError).addClass('error'))
+ replaceOutput($result, $('').text('Exception during execution. (' + result.vm.exceptionError + '). Please debug the transaction for more information.').addClass('error'))
$result.append(getDebugTransaction(txResult))
// VM only
} else if (self.executionContext.isVM() && result.vm.return === undefined) {
- replaceOutput($result, $('').text('Exception during execution.').addClass('error'))
+ replaceOutput($result, $('').text('Exception during execution. Please debug the transaction for more information.').addClass('error'))
$result.append(getDebugTransaction(txResult))
} else if (isConstructor) {
replaceOutput($result, getGasUsedOutput(result, result.vm))