1
0
Fork 0

Add not authorized error condition

This commit is contained in:
Chteufleur 2016-07-23 11:58:03 +02:00
parent 3f618b50f5
commit d90f7642e3
1 changed files with 1 additions and 0 deletions

View File

@ -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"}
) )