12345678910111213141516171819202122232425262728293031 |
- using System;
- namespace uPLibrary.Networking.M2Mqtt.Exceptions
- {
-
-
-
- public class MqttConnectionException : Exception
- {
- public MqttConnectionException(string message, Exception innerException)
- : base(message, innerException)
- {
- }
- }
- }
|