另客网go项目公用的代码库

error.go 179B

123456789101112
  1. package tr
  2. // TCPError response tcp error
  3. type TCPError struct {
  4. Status int `json:"status"`
  5. Msg string `json:"msg"`
  6. }
  7. func (e TCPError) Error() string {
  8. return e.Msg
  9. }