Is there a way to send caught exceptions in iOS ? I could implement it in Android using ExceptionHandler.saveException API in the HockeyApp SDK. What is the equivalent API in iOS ?
@try {
// lines of code which can cause an exception
}
@catch (NSException *exception) {
NSLog(@"%@", exception.reason);
// report to HockeyApp
}