Changed Error Handler

This commit is contained in:
Rich 2010-04-21 20:57:39 +00:00
parent 4a50092154
commit 37688d042f

View File

@ -123,7 +123,7 @@ namespace DataLoader
{ {
log.ErrorFormat("Could not load data, error = {0}", ex.Message); log.ErrorFormat("Could not load data, error = {0}", ex.Message);
//return false; //return false;
throw ex; throw new Exception("Error in LoadFolders", ex);
} }
return true; return true;
} }