Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- using System;
-
- namespace MQTTnet.Core.Exceptions
- {
- public class MqttCommunicationException : Exception
- {
- public MqttCommunicationException()
- {
- }
-
- public MqttCommunicationException(Exception innerException)
- : base(innerException.Message, innerException)
- {
- }
-
- public MqttCommunicationException(string message)
- : base(message)
- {
- }
- }
- }
|