16 lines
591 B
C#
16 lines
591 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BlubbFish.IoT.Zway.Exceptions {
|
|
public class ConnectionException : Exception {
|
|
public ConnectionException() { }
|
|
public ConnectionException(String message) : base(message) { }
|
|
public ConnectionException(String message, Exception innerException) : base(message, innerException) { }
|
|
protected ConnectionException(SerializationInfo info, StreamingContext context) : base(info, context) { }
|
|
}
|
|
}
|