#region --------------- Copyright Dresser Wayne Pignone ------------- /* * $Log: /Wrk/WayneLibraries/Wrk/Log/DefaultErrorCategoryEnum.cs $ * * 2 08-02-13 9:25 Mattias.larsson * FxCop fixes. */ #endregion namespace Wayne.Lib.Log { /// /// This is the default set up of error categories to be used when logging ErrorLogEntries. /// public enum DefaultErrorCategory { #region Fields /// /// Whoops. Our mistake. A bug. /// Bug, /// /// This error is due to a badly configured system. /// Configurational, /// /// This error occurred as a result of some communication problems. /// Communication, /// /// Some kind of Peripheral equipment failed in some way. /// Peripheral, /// /// The program got an unexpected result from some kind of operation. /// This could for instance be a computed value that is out of the allowed range. /// UnexpectedResult, /// /// Invalid XML data. /// XmlValidation #endregion } }