create   or   replace   function  PEF_GET_TITLE_NAME(TITLE_CODE   VARCHAR2)  return  null
is
begin
   return null;
end ;
报错:
(1):PLS-00103: 出现符号 "null"在需要下列之一时:
(1): <an identifier>
(1):   <a double-quoted delimited-identifier> self long double ref
(1):   char time timestamp interval date binary national character
(1):   nchar求指教,怎么定义一个返回空类型的函数?