mirror of
https://gitlab.com/fabinfra/fabaccess/borepin_tmp.git
synced 2025-03-12 23:01:49 +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)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|