woodpecker/remote/coding/internal/error.go
2017-07-22 17:12:09 +08:00

16 lines
227 B
Go

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)
}