error.go 236 B

1234567891011121314
  1. package constants
  2. type ErrorCode int
  3. const (
  4. ERRORCODE_API_TOKEN ErrorCode = iota + 10000
  5. )
  6. const (
  7. ERRORCODE_FCODE_INVILID ErrorCode = iota + 10200
  8. ERRORCODE_FCODE_EXPIRED
  9. ERRORCODE_FCODE_UPEXCEED
  10. ERRORCODE_FCODE_ALREADY_GOT
  11. )