ABAP Keyword Documentation → ABAP Glossary
resumable exception
Class-based exception
that is triggered by the addition RESUMABLE
of the statement
RAISE EXCEPTION
(resumable exception). When a resumable exception is
handled in a CATCH
block, you
can resume processing with the statement RESUME
directly after the triggering statement if the context of the excxeption still exists. The property of resumability in an exception can be lost when you propagate the exception from
procedures, if it is not marked as resumable in all relevant
parameter interfaces.
This is done with the addition RESUMABLE
in your RAISING
declaration.