Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 40554c9

Browse files
committed
Clear the error msg
1 parent e04dba8 commit 40554c9

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

source/core/ut_suite_manager.pkb

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,11 @@ create or replace package body ut_suite_manager is
465465
l_suite_path := regexp_substr(l_path, ':(.+)', subexpression => 1);
466466
l_root_suite_name := regexp_substr(l_suite_path, '^\w+');
467467

468-
l_suite := l_schema_suites(l_root_suite_name);
468+
begin
469+
l_suite := l_schema_suites(l_root_suite_name);
470+
exception when no_data_found then
471+
raise_application_error(-20203, 'Suite ' || l_root_suite_name || ' note found');
472+
end;
469473

470474
skip_by_path(l_suite, regexp_substr(l_suite_path, '\.(.+)', subexpression => 1));
471475

0 commit comments

Comments
 (0)