--| +=========================================================================+ --| | | --| | NAMESPACE_SCAN.SCAN_EXCEPTION_HANDLER_LIST (body) | --| | | --| | Greg Janee | --| | General Research Corporation | --| | | --| +=========================================================================+ separate (Namespace_Scan) procedure Scan_Exception_Handler_List (The_List : in Asis.Exception_Handler_List; The_Context : in Context) is Cuid : constant String := "Namespace_Scan.Scan_Exception_Handler_List"; Puid : constant String := "Scan_Exception_Handler_List"; The_Handler : Asis.Exception_Handler; begin for I in The_List'Range loop The_Handler := The_List (I); Namespace_Scan.Scan_Exception_Handler (The_Handler, The_Context); end loop; end Scan_Exception_Handler_List;