Updated exceptron driver to 0.1.0.34

This commit is contained in:
kay.one
2012-06-17 14:55:28 -07:00
parent 85914b5262
commit fb74a1a6a7
24 changed files with 2438 additions and 5 deletions
@@ -0,0 +1,28 @@
namespace Exceptron.Driver
{
/// <summary>
/// Severity of the exception being reported
/// </summary>
public enum ExceptionSeverity
{
/// <summary>
/// Excepted Error. Can be ignored
/// </summary>
None = 0,
/// <summary>
/// Error that can be handled gracefully
/// </summary>
Warning = 1,
/// <summary>
/// Blocking user from completing their intended action
/// </summary>
Error = 2,
/// <summary>
/// Will most likely cause the application to crash
/// </summary>
Fatal = 3
}
}