namespace Exceptron.Client { /// /// Severity of the exception being reported /// public enum ExceptionSeverity { /// /// Excepted Error. Can be ignored /// None = 0, /// /// Error that can be handled gracefully /// Warning = 1, /// /// Blocking user from completing their intended action /// Error = 2, /// /// Will most likely cause the application to crash /// Fatal = 3 } }