mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-12 14:51:44 +01:00
27 lines
509 B
C#
27 lines
509 B
C#
using System;
|
|
|
|
namespace FabAccessAPI.Exceptions
|
|
{
|
|
/// <summary>
|
|
/// Connecting to a server has failed
|
|
/// InnerException will provide more information
|
|
/// </summary>
|
|
public class ConnectionException : Exception
|
|
{
|
|
public ConnectionException()
|
|
{
|
|
|
|
}
|
|
|
|
public ConnectionException(string message) : base(message)
|
|
{
|
|
|
|
}
|
|
|
|
public ConnectionException(string message, Exception inner) : base(message, inner)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|