LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Unhandled errors

When  using certain functions that are less frequently called, I feel like not using the "error out"  node  as,  even if it generates an error, it is not significant. As an example if i use the "New Directory" function to create a  directory, it will generate an error 10  if the directory already exists.  Even if I  don't handle the error,  the rest of the code just runs.

Question is  what happens to the generated error ? Is it  internally queued in  memory  and  if left  to "grow" , can it crash the  code ultimatley ?

Thanks for any tips..

Raghunathan



Raghunathan
LabVIEW to Automate Hydraulic Test rigs.
0 Kudos
Message 1 of 3
(2,788 Views)
No, unused outputs are not "queued" or save anywhere and they won't cause any crashes.
 
If you don't wire the error output and you don't care about the error condition as in your "new directory" example, you should also make sure that "automatic error handling" is disabled.

Message Edited by altenbach on 11-19-2005 11:38 PM

Message 2 of 3
(2,787 Views)
The exact reply that I was expecting. Thanks.

Raghunathan
Raghunathan
LabVIEW to Automate Hydraulic Test rigs.
0 Kudos
Message 3 of 3
(2,777 Views)