using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace uPLibrary.Networking.M2Mqtt.Exceptions { /// /// Connection to the broker exception /// public class MqttConnectionException : Exception { public MqttConnectionException(string message, Exception innerException) : base(message, innerException) { } } }