-
Notifications
You must be signed in to change notification settings - Fork 36
/
trycatch-executador.sol
47 lines (34 loc) · 1012 Bytes
/
trycatch-executador.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// SPDX-License-Identifier: GPL-3.0
// Example based on https://www.rareskills.io/post/try-catch-solidity
pragma solidity 0.8.25;
contract Executador {
error ErroCustomizado(uint256 saldo);
uint256 public saldo = 10;
function qualSaldoAtual() external view returns (uint256) {
return saldo;
}
function reduzirSaldo() external {
require(saldo >= 5, "Saldo esta muito baixo");
saldo--;
}
function testeReversao() external view {
if (saldo == 9) {
revert();
}
if (saldo == 8) {
uint256 a = 1;
uint256 b = 0;
// A operacao abaixo eh ilegal e deve disparar um panic devido a divisao por zero
a / b;
}
if (saldo == 7) {
revert("mensagem de reversao");
}
if (saldo == 6) {
revert ErroCustomizado(100);
}
if (saldo == 5) {
require(saldo > 5, "Saldo esta muito baixo");
}
}
}