mirror of
https://github.com/FluuxIO/go-xmpp
synced 2024-11-11 07:11:03 +00:00
14 lines
361 B
Go
14 lines
361 B
Go
package stanza
|
|
|
|
// ErrorType is a Enum of error attribute type
|
|
type ErrorType string
|
|
|
|
// RFC 6120: part of A.5 Client Namespace and A.6 Server Namespace
|
|
const (
|
|
ErrorTypeAuth ErrorType = "auth"
|
|
ErrorTypeCancel ErrorType = "cancel"
|
|
ErrorTypeContinue ErrorType = "continue"
|
|
ErrorTypeModify ErrorType = "modify"
|
|
ErrorTypeWait ErrorType = "wait"
|
|
)
|