This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create or replace package checker is | |
subtype t_exception_no is pls_integer range -20500..-20000; | |
c_null_value constant t_exception_no := -20001; | |
procedure raise_if_null(p_value varchar2); | |
end; | |
/ |