global

package
v0.1.0-beta.27 Latest Latest
Warning

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

Go to latest
Published: Dec 6, 2024 License: MIT Imports: 0 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// FileNotFound 文件未找到
	FileNotFound = iota + 5000001

	// FileParseError 文件解析错误
	FileParseError

	// FileHashError  计算文件hash失败
	FileHashError

	// FileUploadError 文件上传失败
	FileUploadError
)

Variables

View Source
var (
	// ErrorParam 错误的参数
	ErrorParam = NewError(400400, "错误的参数")

	// ErrorParseFile 解析文件出错
	ErrorParseFile = NewError(FileParseError, "解析文件出错")

	// ErrorFileNotFound 文件未找到
	ErrorFileNotFound = NewError(FileNotFound, "文件未找到")

	// ErrorFileHashError 计算文件hash失败
	ErrorFileHashError = NewError(FileHashError, "计算文件hash失败")

	// ErrorFileUploadError 文件上传失败
	ErrorFileUploadError = NewError(FileUploadError, "文件上传失败")
)

Functions

This section is empty.

Types

type ResultCont

type ResultCont struct {
	ErrCode int    `json:"errCode"` // 提示代码
	Message string `json:"message"` // 提示信息
}

ResultCont 返回错误结果

func NewError

func NewError(code int, msg string) ResultCont

NewError 创建错误

Jump to

Keyboard shortcuts

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