mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-12 02:21:29 +08:00
16 lines
306 B
Go
16 lines
306 B
Go
package server
|
|
|
|
// 常见的错误代码和消息
|
|
const (
|
|
InternalServerErrorCode = 100001
|
|
InternalServerErrorMsg = "Internal Server Error"
|
|
|
|
InvalidParamErrorCode = 100002
|
|
InvalidParamErrorMsg = "Invalid %s Param"
|
|
)
|
|
|
|
const (
|
|
DeviceNotFoundCode = 110001
|
|
DeviceNotFoundMsg = "Device %s Not Found"
|
|
)
|