Integrated Instabug
with my swift 2.3
application, but seen the error reporting api of Instabug
accepting NSException
as following,
Instabug.reportException(e)
But in swift 2.3, I am getting NSError instance within catch block.
do {
}
catch let error as NSError {
}
I want to report the error I am getting in my catch block to Instabug
. Please let me know how I can do this.