mirror of
https://github.com/Monibuca/plugin-gb28181.git
synced 2025-12-24 13:27:57 +08:00
14 lines
278 B
Go
14 lines
278 B
Go
package transaction
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
//transaction 的错误定义
|
|
var (
|
|
ErrorSyntax = errors.New("message syntax error")
|
|
ErrorCheck = errors.New("message check failed")
|
|
ErrorParse = errors.New("message parse failed")
|
|
ErrorUnknown = errors.New("message unknown")
|
|
)
|