/* Copyright 2013 Google Inc Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ using System; using System.Net; namespace Google.Apis.Auth.OAuth2.Responses { /// /// Token response exception which is thrown in case of receiving a token error when an authorization code or an /// access token is expected. /// public class TokenResponseException : Exception { /// The error information. public TokenErrorResponse Error { get; } /// HTTP status code of error, or null if unknown. public HttpStatusCode? StatusCode { get; } /// Constructs a new token response exception from the given error. public TokenResponseException(TokenErrorResponse error) : this(error, null) { } /// Constructs a new token response exception from the given error nad optional HTTP status code. public TokenResponseException(TokenErrorResponse error, HttpStatusCode? statusCode) : base(error.ToString()) { Error = error; StatusCode = statusCode; } } }