Zway/Zway/Exceptions/ZwayExceptions.cs
2017-10-29 19:32:18 +00:00

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) { }
}
}