mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
29 lines
912 B
C#
29 lines
912 B
C#
|
namespace TINK.Model.Repository.Exception
|
|||
|
{
|
|||
|
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)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|