public GetLoadBalancerErrorPageResponse(string content) { if (content == null) throw new ArgumentNullException("content"); if (string.IsNullOrEmpty(content)) throw new ArgumentException("content cannot be empty"); _body = new ErrorPageBody(content); }
public GetLoadBalancerErrorPageResponse(string content) { if (content == null) { throw new ArgumentNullException("content"); } if (string.IsNullOrEmpty(content)) { throw new ArgumentException("content cannot be empty"); } _body = new ErrorPageBody(content); }