mirror of
https://github.com/AlexMacocian/WpfExtended.git
synced 2026-07-15 23:09:30 +00:00
10 lines
389 B
C#
10 lines
389 B
C#
using Microsoft.Web.WebView2.Core;
|
|
using System;
|
|
|
|
namespace WpfExtended.Blazor.Exceptions;
|
|
|
|
public sealed class CoreWebView2Exception(CoreWebView2ProcessFailedEventArgs args, string message, Exception? innerException = default) : Exception(message, innerException)
|
|
{
|
|
public CoreWebView2ProcessFailedEventArgs Args { get; } = args ?? throw new ArgumentNullException(nameof(args));
|
|
}
|