File: src\Tools\GetDocumentInsider\src\CommandException.cs | Web Access |
Project: src\src\Tools\dotnet-getdocument\src\dotnet-getdocument.csproj (dotnet-getdocument) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; namespace Microsoft.Extensions.ApiDescription.Tool; internal sealed class CommandException : Exception { public CommandException(string message) : base(message) { } public CommandException(string message, Exception innerException) : base(message, innerException) { } } |