You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

sdks.go 204 B

123456789101112
  1. package sdks
  2. import "fmt"
  3. type CodeMessageError struct {
  4. Code string
  5. Message string
  6. }
  7. func (e *CodeMessageError) Error() string {
  8. return fmt.Sprintf("code: %s, message: %s", e.Code, e.Message)
  9. }