mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2025-01-04 03:00:20 +00:00
21 lines
No EOL
676 B
C#
21 lines
No EOL
676 B
C#
|
|
|
|
#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
|
|
{
|
|
/// <summary>Indicates the behavior when the <see cref="FileHelperEngine"/> class found an error.</summary>
|
|
public enum ErrorMode
|
|
{
|
|
/// <summary>Default value, this simple Rethrow the original exception.</summary>
|
|
ThrowException = 0,
|
|
/// <summary>Add an <see cref="ErrorInfo"/> to the array of <see cref="ErrorManager.Errors"/>.</summary>
|
|
SaveAndContinue,
|
|
/// <summary>Simply ignores the exception an continue.</summary>
|
|
IgnoreAndContinue
|
|
}
|
|
} |