Diagnostic exception log

Diagnostic exception log records PAH exceptions for diagnostic purposes. PAH uses two methods to capture and process all exceptions:

  • Global exception handlers

    PAH has a global exception handling mechanism that captures any unhandled exception occurring within the application. This mechanism acts as a safety net to ensure that all exceptions get captured and processed successfully.

  • Local exception handlers

    PAH has localized exception handling blocks positioned at sections where the risk of encountering an exception is relatively higher. These blocks guard against certain known exceptions that might occur and handle them appropriately. This level of exception handling helps the application identify, track down, and process known exceptions in a better way.