You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 lines
292 B

  1. using MQTTnet.Exceptions;
  2. namespace MQTTnet.Internal
  3. {
  4. public static class ExceptionHelper
  5. {
  6. public static void ThrowGracefulSocketClose()
  7. {
  8. throw new MqttCommunicationException("Connection gracefully closed from the remote party.");
  9. }
  10. }
  11. }