Add and use ThrowOnError global (temp)

This commit is contained in:
Matt Nadareski
2020-09-15 12:12:13 -07:00
parent ab06bf89f6
commit 91f659dca2
34 changed files with 468 additions and 30 deletions

View File

@@ -68,6 +68,11 @@ namespace SabreTools.Library.Data
/// </summary>
public static string TempDir { get; set; } = Path.GetTempPath();
/// <summary>
/// Whether to throw an exception from the library if an error is found
/// </summary>
public static bool ThrowOnError { get; set; } = false;
#endregion
}
}