diff options
author | chriseth <c@ethdev.com> | 2016-03-10 22:56:25 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-03-12 00:49:59 +0800 |
commit | d0bb87ae88602f4afc091d9cda1be352258a6df9 (patch) | |
tree | c70e18546dcdd7bdaa5cfb61c8562e19a5405499 /docs/control-structures.rst | |
parent | b8bcb706e946ca05f55139e668fe90297a382a0a (diff) | |
download | dexon-solidity-d0bb87ae88602f4afc091d9cda1be352258a6df9.tar dexon-solidity-d0bb87ae88602f4afc091d9cda1be352258a6df9.tar.gz dexon-solidity-d0bb87ae88602f4afc091d9cda1be352258a6df9.tar.bz2 dexon-solidity-d0bb87ae88602f4afc091d9cda1be352258a6df9.tar.lz dexon-solidity-d0bb87ae88602f4afc091d9cda1be352258a6df9.tar.xz dexon-solidity-d0bb87ae88602f4afc091d9cda1be352258a6df9.tar.zst dexon-solidity-d0bb87ae88602f4afc091d9cda1be352258a6df9.zip |
Documentation for delegatecall.
Diffstat (limited to 'docs/control-structures.rst')
-rw-r--r-- | docs/control-structures.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/control-structures.rst b/docs/control-structures.rst index 989e14ba..9f0f5b5d 100644 --- a/docs/control-structures.rst +++ b/docs/control-structures.rst @@ -145,7 +145,7 @@ Assigning *to* a state variable always creates an independent copy. On the other Exceptions ========== -There are some cases where exceptions are thrown automatically (see below). You can use the `throw` instruction to throw an exception manually. The effect of an exception is that the currently executing call is stopped and reverted (i.e. all changes to the state and balances are undone) and the exception is also "bubbled up" through Solidity function calls (exceptions are `send` and the low-level functions `call` and `callcode`, those return `false` in case of an exception). +There are some cases where exceptions are thrown automatically (see below). You can use the `throw` instruction to throw an exception manually. The effect of an exception is that the currently executing call is stopped and reverted (i.e. all changes to the state and balances are undone) and the exception is also "bubbled up" through Solidity function calls (exceptions are `send` and the low-level functions `call`, `delegatecall` and `callcode`, those return `false` in case of an exception). Catching exceptions is not yet possible. |