public AlphaMailValidationException(string message, HttpResponseStatusHead httpStatus, ServiceResponse response, Exception innerException)
     : base(message, httpStatus, response, innerException)
 {
 }
 public AlphaMailServiceException(string message, HttpResponseStatusHead httpStatus, ServiceResponse response, Exception innerException)
     : base(message, innerException)
 {
     this.HttpStatus = httpStatus;
     this.Response = response;
 }