We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3619321 commit 0625596Copy full SHA for 0625596
src/MySqlConnector/MySql.Data.MySqlClient/MySqlException.cs
@@ -33,6 +33,6 @@ internal MySqlException(int errorNumber, string sqlState, string message, Except
33
internal static MySqlException CreateForTimeout() => CreateForTimeout(null);
34
35
internal static MySqlException CreateForTimeout(Exception innerException) =>
36
- new MySqlException((int) MySqlErrorCode.CommandTimeoutExpired, null, "The Command Timeout expired before the operation completed.");
+ new MySqlException((int) MySqlErrorCode.CommandTimeoutExpired, null, "The Command Timeout expired before the operation completed.", innerException);
37
}
38
0 commit comments