Browse Source

`FederationDeniedError` is not a `SynapseError`

Spawning from https://github.com/matrix-org/synapse/pull/13816#discussion_r993262622
Eric Eastwood 1 year ago
parent
commit
bcc7132880
1 changed files with 1 additions and 1 deletions
  1. 1 1
      synapse/api/errors.py

+ 1 - 1
synapse/api/errors.py

@@ -248,7 +248,7 @@ class UserDeactivatedError(SynapseError):
         )
 
 
-class FederationDeniedError(SynapseError):
+class FederationDeniedError(RuntimeError):
     """An error raised when the server tries to federate with a server which
     is not on its federation whitelist.