mirror of
https://github.com/Pungyeon/clean-go-article.git
synced 2024-11-23 14:14:05 +00:00
Merge pull request #37 from bitcodr/improve-error-handling
Improve error handling
This commit is contained in:
commit
693d670f28
|
@ -698,7 +698,7 @@ By simply representing the error as a variable (`ErrItemNotFound`), we've ensure
|
||||||
func GetItemHandler(w http.ReponseWriter, r http.Request) {
|
func GetItemHandler(w http.ReponseWriter, r http.Request) {
|
||||||
item, err := clean.GetItem("123")
|
item, err := clean.GetItem("123")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if err == clean.ErrItemNotFound {
|
if errors.Is(err, clean.ErrItemNotFound) {
|
||||||
http.Error(w, err.Error(), http.StatusNotFound)
|
http.Error(w, err.Error(), http.StatusNotFound)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -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) {
|
func GetItemHandler(w http.ReponseWriter, r http.Request) {
|
||||||
item, err := clean.GetItem("123")
|
item, err := clean.GetItem("123")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if err.Type() == clean.ErrItemNotFound {
|
if errors.Is(err.Type(), clean.ErrItemNotFound) {
|
||||||
http.Error(w, err.Error(), http.StatusNotFound)
|
http.Error(w, err.Error(), http.StatusNotFound)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue