From 85832e262d348068cd32258999a5760b607d6732 Mon Sep 17 00:00:00 2001 From: Ryan Nowak Date: Thu, 18 Jul 2019 08:22:06 -0700 Subject: [PATCH] Make RemoteRendererException internal Part of: #12221 This was part of a previous PR, but I accidentally removed it during a rebase :( Server/ref/Microsoft.AspNetCore.Components.Server.netcoreapp3.0.cs --- ...Microsoft.AspNetCore.Components.Server.netcoreapp3.0.cs | 7 ------- .../Server/src/Circuits/RemoteRendererException.cs | 2 +- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/src/Components/Server/ref/Microsoft.AspNetCore.Components.Server.netcoreapp3.0.cs b/src/Components/Server/ref/Microsoft.AspNetCore.Components.Server.netcoreapp3.0.cs index e39c5d64acf7..82ca168a00e5 100644 --- a/src/Components/Server/ref/Microsoft.AspNetCore.Components.Server.netcoreapp3.0.cs +++ b/src/Components/Server/ref/Microsoft.AspNetCore.Components.Server.netcoreapp3.0.cs @@ -70,13 +70,6 @@ protected CircuitHandler() { } public virtual System.Threading.Tasks.Task OnConnectionUpAsync(Microsoft.AspNetCore.Components.Server.Circuits.Circuit circuit, System.Threading.CancellationToken cancellationToken) { throw null; } } } -namespace Microsoft.AspNetCore.Components.Web.Rendering -{ - public partial class RemoteRendererException : System.Exception - { - public RemoteRendererException(string message) { } - } -} namespace Microsoft.Extensions.DependencyInjection { public static partial class ComponentServiceCollectionExtensions diff --git a/src/Components/Server/src/Circuits/RemoteRendererException.cs b/src/Components/Server/src/Circuits/RemoteRendererException.cs index 462c4467515d..75edc46ad796 100644 --- a/src/Components/Server/src/Circuits/RemoteRendererException.cs +++ b/src/Components/Server/src/Circuits/RemoteRendererException.cs @@ -8,7 +8,7 @@ namespace Microsoft.AspNetCore.Components.Web.Rendering /// /// Represents an exception related to remote rendering. /// - public class RemoteRendererException : Exception + internal class RemoteRendererException : Exception { /// /// Constructs an instance of .