13 lines
315 B
Go
13 lines
315 B
Go
package messages
|
|
|
|
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 = "motify"
|
|
ErrorTypeWait ErrorType = "wait"
|
|
)
|