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.
45 lines
762 B
Go
45 lines
762 B
Go
package errorx
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/zeromicro/go-zero/tools/goctl/pkg/env"
|
|
)
|
|
|
|
var errorFormat = `goctl error: %+v
|
|
goctl env:
|
|
%s
|
|
%s`
|
|
|
|
// GoctlError represents a goctl error.
|
|
type GoctlError struct {
|
|
message []string
|
|
err error
|
|
}
|
|
|
|
func (e *GoctlError) Error() string {
|
|
detail := wrapMessage(e.message...)
|
|
return fmt.Sprintf(errorFormat, e.err, env.Print(), detail)
|
|
}
|
|
|
|
// Wrap wraps an error with goctl version and message.
|
|
func Wrap(err error, message ...string) error {
|
|
e, ok := err.(*GoctlError)
|
|
if ok {
|
|
return e
|
|
}
|
|
|
|
return &GoctlError{
|
|
message: message,
|
|
err: err,
|
|
}
|
|
}
|
|
|
|
func wrapMessage(message ...string) string {
|
|
if len(message) == 0 {
|
|
return ""
|
|
}
|
|
return fmt.Sprintf(`message: %s`, strings.Join(message, "\n"))
|
|
}
|