Browse Source

improve exception message when handling connection errors (#1302)

release/3.x.x
patagona 3 years ago
committed by GitHub
parent
commit
39e637795e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Source/MQTTnet/Exceptions/MqttCommunicationTimedOutException.cs

+ 1
- 1
Source/MQTTnet/Exceptions/MqttCommunicationTimedOutException.cs View File

@@ -8,7 +8,7 @@ namespace MQTTnet.Exceptions
{
}

public MqttCommunicationTimedOutException(Exception innerException) : base(innerException)
public MqttCommunicationTimedOutException(Exception innerException) : base("The operation has timed out.", innerException)
{
}
}


Loading…
Cancel
Save