nn::dbg::CTR::ExceptionScreen::HandleException Member Function

Syntax

#include <nn/dbg.h>

static void HandleException(
     nn::os::ExceptionInfo * pei,
     nn::os::ExceptionContext * pec
);

Parameters

Name Description
in pei The exception information to pass to the exception handler.
in pec The context information to pass to the exception handler.

Return Values

None.

Description

Performs processing when there is an exception.

Outputs the specified exception information in accordance to option as specified by Create.

This function does not need to be called when using ExceptionScreen. Use this function if you want to perform proprietary processing before/after the exception handler runs the ExceptionScreen exception handling.

If OPTION_DIRECT_PRINT is specified, you can return from this function by pressing the START Button.

The Create function must have been called before calling this function.

Revision History

2012/04/20
Initial version.

CONFIDENTIAL