| File: Nuget.Frameworks\FrameworkException.cs | Web Access |
| Project: src\src\vstest\src\Microsoft.TestPlatform.ObjectModel\Microsoft.TestPlatform.ObjectModel.csproj (Microsoft.VisualStudio.TestPlatform.ObjectModel) |
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Runtime.Serialization; namespace NuGetClone.Frameworks { [Serializable] internal class FrameworkException : Exception { public FrameworkException(string message) : base(message) { } protected FrameworkException(SerializationInfo info, StreamingContext context) : base(info, context) { } } } |