DBA Data[Home] [Help]

PACKAGE BODY: SYS.GET_ERROR$

Source


1 package body get_error$ as
2   function error_lines (classname varchar2) return myrctype is
3     rc myrctype; short_name varchar2(50); n number;
4   begin
5     open rc for select text from user_errors
6        where name = dbms_java.shortname(classname);
7     return rc;
8   end;
9 end get_error$;