We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f5db54 commit b599876Copy full SHA for b599876
mautrix/errors/__init__.py
@@ -42,6 +42,7 @@
42
MTooLarge,
43
MUnauthorized,
44
MUnknown,
45
+ MUnknownEndpoint,
46
MUnknownToken,
47
MUnrecognized,
48
MUnsupportedRoomVersion,
@@ -105,6 +106,7 @@
105
106
"MTooLarge",
107
"MUnauthorized",
108
"MUnknown",
109
+ "MUnknownEndpoint",
110
"MUnknownToken",
111
"MUnrecognized",
112
"MUnsupportedRoomVersion",
mautrix/errors/request.py
@@ -111,6 +111,11 @@ class MInsufficientPower(MForbidden):
pass
113
114
+@standard_error("M_UNKNOWN_ENDPOINT")
115
+class MUnknownEndpoint(MatrixStandardRequestError):
116
+ pass
117
+
118
119
@standard_error("M_USER_DEACTIVATED")
120
class MUserDeactivated(MForbidden):
121
0 commit comments