Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
anytype.getpersistent
1 parent 004b537 commit ada957dCopy full SHA for ada957d
1 file changed
source/expectations/data_values/ut_cursor_details.tpb
@@ -165,8 +165,6 @@ create or replace type body ut_cursor_details as
165
a_owner in varchar2, a_type_name in varchar2
166
) return anytype is
167
l_result anytype;
168
- e_not_found exception;
169
- pragma exception_init(e_not_found,-22303);
170
begin
171
172
$if dbms_db_version.version <= 12 $then
@@ -175,7 +173,7 @@ create or replace type body ut_cursor_details as
175
173
l_result := getanytypefrompersistent( a_owner, a_type_name );
176
174
$end
177
exception
178
- when e_not_found then
+ when others then
179
null;
180
end;
181
return l_result;
0 commit comments