forked from chteufleur/go-xmpp
Add not authorized error condition
This commit is contained in:
parent
3f618b50f5
commit
d90f7642e3
|
|
@ -172,4 +172,5 @@ var (
|
||||||
FeatureNotImplemented = ErrorCondition{nsErrorStanzas, "feature-not-implemented"}
|
FeatureNotImplemented = ErrorCondition{nsErrorStanzas, "feature-not-implemented"}
|
||||||
RemoteServerNotFound = ErrorCondition{nsErrorStanzas, "remote-server-not-found"}
|
RemoteServerNotFound = ErrorCondition{nsErrorStanzas, "remote-server-not-found"}
|
||||||
ServiceUnavailable = ErrorCondition{nsErrorStanzas, "service-unavailable"}
|
ServiceUnavailable = ErrorCondition{nsErrorStanzas, "service-unavailable"}
|
||||||
|
NotAuthorized = ErrorCondition{nsErrorStanzas, "not-authorized"}
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue