19 lines
386 B
C#
19 lines
386 B
C#
using System;
|
|
|
|
namespace ownChat
|
|
{
|
|
public partial class ExceptionWindow
|
|
{
|
|
public ExceptionWindow(Exception exception)
|
|
{
|
|
InitializeComponent();
|
|
ExceptionViewControl.Exception = exception;
|
|
}
|
|
|
|
private void ExceptionViewControl_OnOkButtonClicked(object sender, EventArgs e)
|
|
{
|
|
Close();
|
|
}
|
|
}
|
|
}
|