How to Handle the Exception in a codeunit or a Report

I am using ERP Navision 3.7 .i need to customize a codeunit for my company purpose .So How to handle the Exceptions of a moduel to run further actions with out stoping ,If any possible to Catch exceptions

Unfortunately, there is no way to catch errors. You’ll have to program around the errors and check the data first.

If you use a codeunit’s return value (it returns TRUE if it succeeds and FALSE if it runs into an error) then you can kind of ‘catch’ errors, but in 3.7 you won’t know what the actual error was.