123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- namespace uPLibrary.Networking.M2Mqtt.Exceptions
- {
-
-
-
- public class MqttCommunicationException : Exception
- {
-
-
-
- public MqttCommunicationException()
- {
- }
-
-
-
-
- public MqttCommunicationException(Exception e)
- : base(String.Empty, e)
- {
- }
- }
- }
|