0

I am developing an application and I have to submit an error report, I have to save all errors I face in database or word file, etc. Exceptions have to be saved in order to know what kind of exceptions we are facing and to fix them later on.

I have to write code in one place to catch any error that happens. Can anybody help me in this? Where do I write this code and even what is the code to be written in order to achieve my aim?

Carl Veazey
  • 18,392
  • 8
  • 66
  • 81
etab
  • 199
  • 1
  • 14

1 Answers1

0

Here are a couple of links that discuss catching exceptions:

  1. Xcode all exceptions breakpoint.

  2. Installing exception handler

Hope that helps!

Dean
  • 939
  • 10
  • 30
  • installing exception handler link is very good, i have made it, thanks very much :) – etab Nov 06 '13 at 19:32