You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/Exceptron.Client/ExceptionSeverity.cs

28 lines
637 B

namespace Exceptron.Client
{
/// <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
}
}