public override string ToString()
        {
            DVGException self = this;

            if (self == null)
            {
                return(string.Empty);
            }

            string jsonString = NewtonJson.Serialize(self);

            return(jsonString);
        }
 public DVGException(string message, DVGException innerException) : base(message, innerException)
 {
 }