// ------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. // ------------------------------------------------------------------------------ namespace Microsoft.Graph { using System; /// /// Graph client exception. /// public class ClientException : ServiceException { /// /// Creates a new client exception. /// /// The error that triggered the exception. /// The possible innerException. public ClientException(Error error, Exception innerException = null) : base(error, innerException) { } } }