SAP NetWeaver AS ABAP Release 740, ©Copyright 2014 SAP AG. All rights reserved.
ABAP Keyword Documentation → ABAP − Release-Specific Changes → Changes in Release 7.0, EhP2 →
Class-Based Exceptions for Release 7.0, EhP2
2. Keep context of an exception
Resumable exceptions
Before Release 7.0, EhP2, the context in which a class-based exception was raised was always emptied completely. All procedures called between the raising of the exception and any handler were deleted with their local data before the handler was executed. The program could only resume after the TRY control structure of the handler.
As of Release 7.0, EhP2, class-based exceptions can be raised and propagated as resumable exceptions. The new addition RESUMABLE can be used in:
The new statement RESUME is used
to resume the execution of a program after the exception-raising statement, while the resumable exception is being handled.
Keep context of an exception
The context of the exception must be kept during handling to enable the program to be resumed after
handling. To enable this, the new addition BEFORE UNWIND of the statement
CATCH has been introduced. This addition can also be used independently of resumable exceptions.
Repeat the TRY block
The new statement RETRY enables an exception-raising TRY block to be repeated.