Application Development and Automation 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: 
Read only

Exception Class

Former Member
0 Likes
476

Hi,

What is exception class .

What is local exception class

what is global exception class.

Thanks,

Medha.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
448

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
Read only

former_member194669
Active Contributor
0 Likes
448

Hi,

Check for class CX_ROOT.

a®

Read only

Former Member
0 Likes
449

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.