gitee.com/lh-her-team/common@v1.5.1/errors/errors.go (about)

     1  package errors
     2  
     3  type Error interface {
     4  	Error() string  // error information
     5  	ErrorCode() int // error code
     6  }