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:
parent
ee9ac351f3
commit
f1b23dd2df
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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"/>.
|
||||
|
|
|
|||
Loading…
Reference in New Issue