aboutsummaryrefslogtreecommitdiffstats
path: root/docs/control-structures.rst
diff options
context:
space:
mode:
authorDenton Liu <liu.denton+github@gmail.com>2016-08-18 02:13:53 +0800
committerDenton Liu <liu.denton+github@gmail.com>2016-08-18 02:13:53 +0800
commitc2cfc819a20292f6085a8583336ed88fd70cb98b (patch)
tree6c6c0c20f31987cae8c0fbfbf048e68510d62586 /docs/control-structures.rst
parent1826579f80f7bb7d274765064c4d69f9232f6dd6 (diff)
downloaddexon-solidity-c2cfc819a20292f6085a8583336ed88fd70cb98b.tar
dexon-solidity-c2cfc819a20292f6085a8583336ed88fd70cb98b.tar.gz
dexon-solidity-c2cfc819a20292f6085a8583336ed88fd70cb98b.tar.bz2
dexon-solidity-c2cfc819a20292f6085a8583336ed88fd70cb98b.tar.lz
dexon-solidity-c2cfc819a20292f6085a8583336ed88fd70cb98b.tar.xz
dexon-solidity-c2cfc819a20292f6085a8583336ed88fd70cb98b.tar.zst
dexon-solidity-c2cfc819a20292f6085a8583336ed88fd70cb98b.zip
Document throwing on calling empty code
Diffstat (limited to 'docs/control-structures.rst')
-rw-r--r--docs/control-structures.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/control-structures.rst b/docs/control-structures.rst
index ecbf4d12..f4991520 100644
--- a/docs/control-structures.rst
+++ b/docs/control-structures.rst
@@ -299,12 +299,13 @@ In the following example, we show how ``throw`` can be used to easily revert an
}
}
-Currently, there are four situations, where exceptions happen automatically in Solidity:
+Currently, there are five situations, where exceptions happen automatically in Solidity:
1. If you access an array beyond its length (i.e. ``x[i]`` where ``i >= x.length``).
2. If a function called via a message call does not finish properly (i.e. it runs out of gas or throws an exception itself).
3. If a non-existent function on a library is called or Ether is sent to a library.
4. If you divide or modulo by zero (e.g. ``5 / 0`` or ``23 % 0``).
+5. If you perform an external function call targeting a contract that contains no code.
Internally, Solidity performs an "invalid jump" when an exception is thrown and thus causes the EVM to revert all changes made to the state. The reason for this is that there is no safe way to continue execution, because an expected effect did not occur. Because we want to retain the atomicity of transactions, the safest thing to do is to revert all changes and make the whole transaction (or at least call) without effect.