Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Exception Class

Former Member
0 Kudos
92

Hi,

What is exception class .

What is local exception class

what is global exception class.

Thanks,

Medha.

1 ACCEPTED SOLUTION

Former Member
0 Kudos
64

DATA : OREF TYPE REF TO CX_ROOT. " To Hold the Exception

try.

*-- Handle Other Exceptions

CATCH CX_ROOT INTO OREF.

LV_TEXT = OREF->GET_TEXT( ).

endtry.

3 REPLIES 3

former_member194669
Active Contributor
0 Kudos
64

Hi,

Check for class CX_ROOT.

Former Member
0 Kudos
65

DATA : OREF TYPE REF TO CX_ROOT. " To Hold the Exception

try.

*-- Handle Other Exceptions

CATCH CX_ROOT INTO OREF.

LV_TEXT = OREF->GET_TEXT( ).

endtry.