sum7
/
yaja
Archived
1
0
Fork 0
This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
yaja/xmpp/enum_error.go

14 lines
359 B
Go
Raw Normal View History

package xmpp
2018-02-13 20:05:18 +01:00
// ErrorType is a Enum of error attribute type
2018-02-13 20:05:18 +01:00
type ErrorType string
2018-02-22 03:12:07 +01:00
// RFC 6120: part of A.5 Client Namespace and A.6 Server Namespace
2018-02-13 20:05:18 +01:00
const (
ErrorTypeAuth ErrorType = "auth"
ErrorTypeCancel ErrorType = "cancel"
ErrorTypeContinue ErrorType = "continue"
ErrorTypeModify ErrorType = "motify"
ErrorTypeWait ErrorType = "wait"
)