using System; namespace FabAccessAPI.Exceptions { /// /// Connecting to a server has failed /// InnerException will provide more information /// public class ConnectionException : Exception { public ConnectionException() { } public ConnectionException(string message) : base(message) { } public ConnectionException(string message, Exception inner) : base(message, inner) { } } }