#region " © Copyright 2005-07 to Marcos Meli - http://www.marcosmeli.com.ar" // Errors, suggestions, contributions, send a mail to: marcos@filehelpers.com. #endregion namespace FileHelpers { /// Indicates the behavior when the class found an error. public enum ErrorMode { /// Default value, this simple Rethrow the original exception. ThrowException = 0, /// Add an to the array of . SaveAndContinue, /// Simply ignores the exception an continue. IgnoreAndContinue } }