Given the following ABAP code, which exception will be raised on execution?
CONSTANTS c_char TYPE c LENGTH 1 VALUE ' '.
TRY.
result = 2 / c_char.
out->write( |Result: { result }| ).
CATCH cx_sy_zerodivide.
out->write( |Error: Division by zero is not defined| ).
CATCH cx_sy_conversion_no_number.
out->write( |Error: { c_char } is not a number!| ).
CATCH cx_sy_itab_line_not_found.
out->write( |Error: Itab contains less than { 2 / c_char } rows| ).
ENDTRY.
Submit