mirror of
https://github.com/Pungyeon/clean-go-article.git
synced 2024-11-23 14:14:05 +00:00
improve error handling
This commit is contained in:
parent
0595e82363
commit
8da89bdc0a
|
@ -794,7 +794,7 @@ And our HTTP handler function can then be refactored to check for a specific err
|
|||
func GetItemHandler(w http.ReponseWriter, r http.Request) {
|
||||
item, err := clean.GetItem("123")
|
||||
if err != nil {
|
||||
if err.Type() == clean.ErrItemNotFound {
|
||||
if errors.Is(err.Type(), clean.ErrItemNotFound) {
|
||||
http.Error(w, err.Error(), http.StatusNotFound)
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue