DBA Data[Home] [Help]

APPS.APP_UTILS dependencies on APP_EXCEPTION

Line 17: app_exception.invalid_argument('app_exceptions.set_char',

13: begin
14:
15: -- Check for valid arguments
16: if ((position is null) or (position < 1)) then
17: app_exception.invalid_argument('app_exceptions.set_char',
18: 'position', to_char(position));
19: elsif (rchar is null) then
20: app_exception.invalid_argument('app_exceptions.set_char', 'rchar', null);
21: end if;

Line 20: app_exception.invalid_argument('app_exceptions.set_char', 'rchar', null);

16: if ((position is null) or (position < 1)) then
17: app_exception.invalid_argument('app_exceptions.set_char',
18: 'position', to_char(position));
19: elsif (rchar is null) then
20: app_exception.invalid_argument('app_exceptions.set_char', 'rchar', null);
21: end if;
22:
23: -- Init string if necessary
24: if (string is null) then