2021-06-26 20:57:55 +02:00
|
|
|
|
namespace TINK.Repository.Exception
|
2021-05-13 20:03:07 +02:00
|
|
|
|
{
|
|
|
|
|
public class CommunicationException : System.Exception
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Constructs a communication exception object.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public CommunicationException()
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Constructs a communication exeption object.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="p_strMessage">Error message.</param>
|
|
|
|
|
public CommunicationException(string p_strMessage) : base(p_strMessage)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Constructs a communication exeption object.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="p_strMessage">Error message.</param>
|
|
|
|
|
/// <param name="p_oException">Inner exceptions.</param>
|
|
|
|
|
public CommunicationException(string p_strMessage, System.Exception p_oException) : base(p_strMessage, p_oException)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|