mirror of
http://git.xinwangdao.com/cnnc-embedded-parts-detect/detect.git
synced 2025-06-25 05:54:14 +08:00
26 lines
665 B
C#
26 lines
665 B
C#
using System;
|
|
|
|
namespace WebViewControl {
|
|
|
|
public class RenderProcessCrashedException : Exception {
|
|
|
|
internal RenderProcessCrashedException(string message) : base(message) {
|
|
}
|
|
}
|
|
|
|
public class RenderProcessKilledException : Exception {
|
|
|
|
public bool IsWebViewDisposing { get; }
|
|
|
|
internal RenderProcessKilledException(string message, bool webViewDisposing = false) : base(message) {
|
|
IsWebViewDisposing = webViewDisposing;
|
|
}
|
|
}
|
|
|
|
public class RenderProcessOutOfMemoryException : Exception {
|
|
|
|
internal RenderProcessOutOfMemoryException(string message) : base(message) {
|
|
}
|
|
}
|
|
}
|