Index: Src/GoogleApis/GoogleApiException.cs =================================================================== --- a/Src/GoogleApis/GoogleApiException.cs +++ b/Src/GoogleApis/GoogleApiException.cs @@ -22,24 +22,18 @@ namespace Google { - /// - /// Represents an exception thrown by an API Service. - /// + /// Represents an exception thrown by an API Service. public class GoogleApiException : Exception { private readonly string serviceName; - /// - /// Gets the service name which related to this exception. - /// + /// Gets the service name which related to this exception. public string ServiceName { get { return serviceName; } } - /// - /// Creates an API Service exception. - /// + /// Creates an API Service exception. public GoogleApiException(string serviceName, string message, Exception inner) : base(message, inner) { @@ -47,15 +41,10 @@ this.serviceName = serviceName; } - /// - /// Creates an API Service exception - /// + /// Creates an API Service exception. public GoogleApiException(string serviceName, string message) : this(serviceName, message, null) { } - /// - /// The http status code which was returned along with this error, - /// or 0 if unavailable. - /// + /// The HTTP status code which was returned along with this error, or 0 if unavailable. public HttpStatusCode HttpStatusCode { get; set; } public override string ToString()