A script-enabled browser is required for this page to function properly.

ORA_NLS.NOT_FOUND built-in exception

This exception is raised when a requested item cannot be found. This is most likely caused by using ORA_NLS.GET_LANG_SCALAR to retrieve character information, or by using ORA_NLS.GET_LANG_STR to retrieve numeric information.

Syntax


ORA_NLS.NOT_FOUND EXCEPTION;

Example


 /*
  ** Hand the exception for an item that was not found
 */
  EXCEPTION
  WHEN ORA_NLS.NOT_FOUND THEN
    TEXT_IO.PUT ('The item was not found, check calls to Get_Lang.');

See also

About the ORA_NLS built-in package

ORA_NLS built-in package