File: ToolInputException.cs
Web Access
Project: src\src\dotnet-svcutil\lib\src\dotnet-svcutil-lib.csproj (dotnet-svcutil-lib)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
 
using System;
using System.Runtime.Serialization;
 
namespace Microsoft.Tools.ServiceModel.Svcutil
{
    internal class ToolInputException : ToolArgumentException
    {
        internal const int COR_E_ASSEMBLYEXPECTED = -2147024885;
 
        internal override ToolExitCode ExitCode
        {
            get
            {
                return ToolExitCode.InputError;
            }
        }
 
        internal ToolInputException() : base()
        {
        }
 
        internal ToolInputException(String message) : base(message)
        {
        }
 
        internal ToolInputException(String message, Exception innerException) : base(message, innerException)
        {
        }
    }
}