Mushrooms in a Garden
Today, on our way to the town center, I took several photos of mushrooms growing in a garden by the side of the road.
Today, on our way to the town center, I took several photos of mushrooms growing in a garden by the side of the road.
Go 1.13 introduces new features to the
errors
andfmt
standard library packages to simplify working with errors that contain other errors. The most significant of these is a convention rather than a change: an error which contains another may implement anUnwrap
method returning the underlying error. Ife1.Unwrap()
returnse2
, then we say thate1
wrapse2
, and that you can unwrape1
to gete2
.
Source: Working with Errors in Go 1.13, an article by Damien Neil and Jonathan Amsterdam.