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
This commit is contained in:
Ryan Nowak 2019-07-18 08:22:06 -07:00 committed by Ryan Nowak
parent ee9ac351f3
commit f1b23dd2df
2 changed files with 1 additions and 8 deletions

View File

@ -79,13 +79,6 @@ namespace Microsoft.AspNetCore.Components.Server.Circuits
public static void NotifyLocationChanged(string uriAbsolute, bool isInterceptedLink) { }
}
}
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

View File

@ -8,7 +8,7 @@ namespace Microsoft.AspNetCore.Components.Web.Rendering
/// <summary>
/// Represents an exception related to remote rendering.
/// </summary>
public class RemoteRendererException : Exception
internal class RemoteRendererException : Exception
{
/// <summary>
/// Constructs an instance of <see cref="RemoteRendererException"/>.