/// <summary> /// Initializes an exception with the specified error message and an inner exception that caused this exception to be raised. /// </summary> /// <param name="message">A human readable message that describes the error</param> /// <param name="innerException"></param> public VssException(string message, Exception innerException) : base(SecretUtility.ScrubSecrets(message), innerException) { }
/// <summary> /// Initializes an exception with the specified error message. /// </summary> /// <param name="message">A human readable message that describes the error</param> public VssException(string message) : base(SecretUtility.ScrubSecrets(message)) { }