namespace RhythmBase.Settings
{
///
/// Actions performed on items with exceptions during reads.
///
public enum UnreadableEventHandling
{
///
/// Stores unreadable events in for restoration.
///
Store,
///
/// An exception will be thrown.
///
ThrowException
}
}