|
|
|
|
|
by fooster
2196 days ago
|
|
Error handling is hard, period. Error handling in go is no worse than any other language, and in most ways it is better being explicit and non-magic. > people who designed it did not have a proper language design background Irrelevant. > It's just bad language design. try {
...
} catch(Exception ex) {
...
} |
|