Hi All,
Using APEX 5.1.2, I have a process based on a PLSQL procedure. I want to do customexception handling for no data found. Below snippet code
EXCEPTION
WHEN NO_DATA_FOUND THEN
apex_application.g_print_success_message := 'No data found for processing.';
--APEX_ERROR.ADD_ERROR(p_message => 'No data found for processing.', p_display_location => apex_error.c_inline_in_notification);
WHEN OTHERS THEN
ROLLBACK;
END test;
However, this does not seems to throw the custom message 'No data found for processing'
Please advise.