| File: ResourceHandling\InputFormatNotSupportedException.cs | Web Access |
| Project: src\msbuild\src\Tasks\Microsoft.Build.Tasks.csproj (Microsoft.Build.Tasks.Core) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Runtime.Serialization; #nullable disable namespace Microsoft.Build.Tasks.ResourceHandling { [Serializable] internal class InputFormatNotSupportedException : Exception { public InputFormatNotSupportedException() { } public InputFormatNotSupportedException(string message) : base(message) { } public InputFormatNotSupportedException(string message, Exception innerException) : base(message, innerException) { } #if NET8_0_OR_GREATER [Obsolete(DiagnosticId = "SYSLIB0051")] #endif protected InputFormatNotSupportedException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }