aspnetcore/src/Connections.Abstractions/Exceptions/ConnectionResetException.cs

20 lines
524 B
C#

// 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.IO;
namespace Microsoft.AspNetCore.Connections
{
public class ConnectionResetException : IOException
{
public ConnectionResetException(string message) : base(message)
{
}
public ConnectionResetException(string message, Exception inner) : base(message, inner)
{
}
}
}