SAP CATCHABLE EXCEPTION - Glossary



Get Example source ABAP code based on a different SAP table
  


VERSION 5 IN

catchable exception
Exception that can be handled in the program using the statements TRY - CATCH - ENDTRY without causing a runtime error. Catchable exceptions are based on exception classes and are implemented by exception objects. A catchable exception is raised either by the ABAP runtime framework or by the statement RAISE EXCEPTION in a program, or by the addition THROW in a conditional expression.
BEGIN_SECTION VERSION 5 OUT Before the introduction of class-based exceptions, catchable exceptions could be user-defined only in the interfaces of function modules and methods and raised using RAISE. Predefined catchable exceptions occurred as catchable runtime errors, now they are obsolete.
END_SECTION VERSION 5 OUT
ABAP_MORE_INFO