Hi all,

I have issues catching exception in Swift as well with the following code:

public func unsubscibeElement(tableKey tableKey: LSSubscribedTableKey) {

do {
//self.client is an instance of LSClient
try self.client.unsubscribeTable(tableKey, error: ())
}
catch {
print("Error occured")
}
}



It does not catch LSPushClientException "Table not found". This version of the unsubscribe function becomes throwing in Swift but it looks like there is a little interoperability issue.

Thanks for your help.