@@ -28,21 +28,21 @@ @interface MTXLeaveRoomFailedException: MTXClientException @property (readonly, nonatomic) OFString *roomID; + (instancetype)exceptionWithStatusCode: (int)statusCode - response: (mtx_response_t)response + response: (MTXResponse)response client: (MTXClient *)client OF_UNAVAILABLE; + (instancetype)exceptionWithRoomID: (OFString *)roomID statusCode: (int)statusCode - response: (mtx_response_t)response + response: (MTXResponse)response client: (MTXClient *)client; - (instancetype)initWithStatusCode: (int)statusCode - response: (mtx_response_t)response + response: (MTXResponse)response client: (MTXClient *)client OF_UNAVAILABLE; - (instancetype)initWithRoomID: (OFString *)roomID statusCode: (int)statusCode - response: (mtx_response_t)response + response: (MTXResponse)response client: (MTXClient *)client; @end OF_ASSUME_NONNULL_END