woodpecker/remote/coding/internal/error.go

16 lines
227 B
Go
Raw Normal View History

2017-07-22 09:12:09 +00:00
package internal
import (
"fmt"
)
type APIClientErr struct {
Message string
URL string
Cause error
}
func (e APIClientErr) Error() string {
return fmt.Sprintf("%s (Requested %s): %v", e.Message, e.URL, e.Cause)
}