mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
clean up AuthError
This commit is contained in:
parent
c4eb97518f
commit
87a824bad1
@ -224,13 +224,9 @@ class NotFoundError(SynapseError):
|
||||
|
||||
class AuthError(SynapseError):
|
||||
"""An error raised when there was a problem authorising an event."""
|
||||
def __init__(self, *args, **kwargs):
|
||||
if "errcode" not in kwargs:
|
||||
kwargs["errcode"] = Codes.FORBIDDEN
|
||||
self.admin_uri = kwargs.get('admin_uri')
|
||||
self.msg = kwargs.get('msg')
|
||||
self.errcode = kwargs.get('errcode')
|
||||
super(AuthError, self).__init__(*args, errcode=kwargs["errcode"])
|
||||
def __init__(self, code, msg, errcode=Codes.FORBIDDEN, admin_uri=None):
|
||||
self.admin_uri = admin_uri
|
||||
super(AuthError, self).__init__(code, msg, errcode=errcode)
|
||||
|
||||
def error_dict(self):
|
||||
return cs_error(
|
||||
|
Loading…
Reference in New Issue
Block a user