您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

22 行
443 B

  1. using System;
  2. namespace MQTTnet.Core.Exceptions
  3. {
  4. public class MqttCommunicationException : Exception
  5. {
  6. public MqttCommunicationException()
  7. {
  8. }
  9. public MqttCommunicationException(Exception innerException)
  10. : base(innerException.Message, innerException)
  11. {
  12. }
  13. public MqttCommunicationException(string message)
  14. : base(message)
  15. {
  16. }
  17. }
  18. }