namespace TINK.Repository.Exception { public class InvalidAuthorizationResponseException : InvalidResponseException { /// Constructs a authorization exceptions. /// Mail address to create a detailed error message. public InvalidAuthorizationResponseException(string p_strMail, Response.ResponseBase p_oResponse) : base(string.Format("Kann Benutzer {0} nicht anmelden. Mailadresse unbekannt oder Passwort ungültig.", p_strMail), p_oResponse) { } /// Holds error description if user/ password combination is not valid. public const string AUTH_FAILURE_STATUS_MESSAGE_UPPERCASE = "FAILURE: CANNOT GENERATE AUTHCOOKIE"; } }