mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
14 lines
530 B
C#
14 lines
530 B
C#
namespace TINK.Repository.Exception
|
|
{
|
|
public class WebForbiddenException : CommunicationException
|
|
{
|
|
/// <summary>
|
|
/// Constructs a communication exeption object.
|
|
/// </summary>
|
|
/// <param name="p_strMessage"></param>
|
|
/// <param name="p_oException"></param>
|
|
public WebForbiddenException(string p_strMessage, System.Exception p_oException) : base($"{p_strMessage}\r\nSchnell getippt?\r\nBitte die App etwas langsamer bedienen...", p_oException)
|
|
{
|
|
}
|
|
}
|
|
}
|