public BaseException(Enum loggingEventID, ContextIdentifier contextIdentifier, string message,
            Exception innerException)
            : base(message, innerException)
        {
            this._loggingEventID = Convert.ToInt32(loggingEventID);

            this._contextIdentifier = contextIdentifier;
        }
        public BaseException(int loggingEventID, ContextIdentifier contextIdentifier, string message,
            Exception innerException)
            : base(message, innerException)
        {
            this._loggingEventID = loggingEventID;

            this._contextIdentifier = contextIdentifier;
        }