mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 11:42:22 +08:00
31 lines
911 B
C#
31 lines
911 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
using System.Windows;
|
|
|
|
namespace BililiveRecorder.WPF.Pages
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for AdvancedSettingsPage.xaml
|
|
/// </summary>
|
|
public partial class AdvancedSettingsPage
|
|
{
|
|
public AdvancedSettingsPage()
|
|
{
|
|
this.InitializeComponent();
|
|
}
|
|
|
|
private void Crash_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
throw new TestException("test crash triggered");
|
|
}
|
|
|
|
public class TestException : Exception
|
|
{
|
|
public TestException() { }
|
|
public TestException(string message) : base(message) { }
|
|
public TestException(string message, Exception innerException) : base(message, innerException) { }
|
|
protected TestException(SerializationInfo info, StreamingContext context) : base(info, context) { }
|
|
}
|
|
}
|
|
}
|