#region License
// Copyright 2005-2019 Paul Kohler (https://github.com/paulkohler/minisqlquery). All rights reserved.
// This source code is made available under the terms of the GNU Lesser General Public License v3.0
// https://github.com/paulkohler/minisqlquery/blob/master/LICENSE
#endregion
using System;
using System.Windows.Forms;
namespace MiniSqlQuery
{
/// The error form.
public partial class ErrorForm : Form
{
/// Initializes a new instance of the class.
public ErrorForm()
{
InitializeComponent();
}
/// The set exception.
/// The exp.
public void SetException(Exception exp)
{
exceptionControl1.SetException(exp);
}
/// The btn ok_ click.
/// The sender.
/// The e.
private void btnOk_Click(object sender, EventArgs e)
{
Close();
}
}
}