You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
436 B
Go
35 lines
436 B
Go
3 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
type apiError int
|
||
|
|
||
|
func (e apiError) Error() string {
|
||
|
return http.StatusText(int(e))
|
||
|
}
|
||
|
|
||
|
type errorNode struct {
|
||
|
err error
|
||
|
parent error
|
||
|
}
|
||
|
|
||
|
func (e errorNode) Error() string {
|
||
|
return e.err.Error()
|
||
|
}
|
||
|
|
||
|
func (e errorNode) Unwrap() error {
|
||
|
return e.parent
|
||
|
}
|
||
|
|
||
|
func joinErrors(e, e2 error) error {
|
||
|
if e == nil {
|
||
|
return e2
|
||
|
}
|
||
|
if e2 == nil {
|
||
|
return e
|
||
|
}
|
||
|
return errorNode{err: e, parent: e2}
|
||
|
}
|