Browse Source
improve exception message when handling connection errors (#1302)
release/3.x.x
patagona
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
Source/MQTTnet/Exceptions/MqttCommunicationTimedOutException.cs
|
|
@@ -8,7 +8,7 @@ namespace MQTTnet.Exceptions |
|
|
|
{ |
|
|
|
} |
|
|
|
|
|
|
|
public MqttCommunicationTimedOutException(Exception innerException) : base(innerException) |
|
|
|
public MqttCommunicationTimedOutException(Exception innerException) : base("The operation has timed out.", innerException) |
|
|
|
{ |
|
|
|
} |
|
|
|
} |
|
|
|