Skip to content

Commit f1b23dd

Browse files
Ryan Nowakrynowak
Ryan Nowak
authored andcommitted
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
1 parent ee9ac35 commit f1b23dd

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

src/Components/Server/ref/Microsoft.AspNetCore.Components.Server.netcoreapp3.0.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,6 @@ protected override void NavigateToCore(string uri, bool forceLoad) { }
7979
public static void NotifyLocationChanged(string uriAbsolute, bool isInterceptedLink) { }
8080
}
8181
}
82-
namespace Microsoft.AspNetCore.Components.Web.Rendering
83-
{
84-
public partial class RemoteRendererException : System.Exception
85-
{
86-
public RemoteRendererException(string message) { }
87-
}
88-
}
8982
namespace Microsoft.Extensions.DependencyInjection
9083
{
9184
public static partial class ComponentServiceCollectionExtensions

src/Components/Server/src/Circuits/RemoteRendererException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace Microsoft.AspNetCore.Components.Web.Rendering
88
/// <summary>
99
/// Represents an exception related to remote rendering.
1010
/// </summary>
11-
public class RemoteRendererException : Exception
11+
internal class RemoteRendererException : Exception
1212
{
1313
/// <summary>
1414
/// Constructs an instance of <see cref="RemoteRendererException"/>.

0 commit comments

Comments
 (0)