errcode

package
v0.1.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 23, 2020 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Overview

Description: Author: Michael Cheung Github: https://github.com/gzmichaelcheung Date: 2020-11-23 16:44:32 LastEditors: Michael Cheung LastEditTime: 2020-11-23 16:44:36

Index

Constants

This section is empty.

Variables

View Source
var (
	Success                   = NewError(0, "成功")
	ServerError               = NewError(10000000, "服务内部错误")
	InvalidParams             = NewError(10000001, "参数错误")
	NotFound                  = NewError(10000002, "无法找到")
	UnauthorizedAuthNotExist  = NewError(10000003, "鉴权失败,找不到相应的AppKey和AppSecret")
	UnauthorizedTokenError    = NewError(10000004, "鉴权失败,Token错误")
	UnauthorizedTokenTimeout  = NewError(10000005, "鉴权失败,Token超时")
	UnauthorizedTokenGenerate = NewError(10000006, "鉴权失败,Token生成失败")
	TooManyRequests           = NewError(10000007, "请求过多")
)
View Source
var (
	ErrorGetTagListFail = NewError(20010001, "获取标签列表失败")
	ErrorCreateTagFail  = NewError(20010002, "创建标签失败")
	ErrorUpdateTagFail  = NewError(20010003, "更新标签失败")
	ErrorDeleteTagFail  = NewError(20010004, "删除标签失败")
	ErrorCountTagFail   = NewError(20010005, "统计标签失败")
)

Functions

This section is empty.

Types

type Error

type Error struct {
	ErrCode    int      `json:"code"`
	ErrMsg     string   `json:"msg"`
	ErrDetails []string `json:"details"`
}

func NewError

func NewError(code int, msg string) *Error

func (*Error) Code

func (e *Error) Code() int

func (*Error) Details

func (e *Error) Details() []string

func (*Error) Error

func (e *Error) Error() string

func (*Error) Msg

func (e *Error) Msg() string

func (*Error) Msgf

func (e *Error) Msgf(args ...interface{}) string

func (*Error) StatusCode

func (e *Error) StatusCode() int

func (*Error) WithDetails

func (e *Error) WithDetails(details ...string) *Error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL