small changes

This commit is contained in:
Fre
2020-08-21 12:13:38 +02:00
parent deccebb582
commit e17a36f7cb
4 changed files with 13 additions and 68 deletions

View File

@@ -1,28 +0,0 @@
using System;
namespace ElectronNET.API.Entities
{
/// <summary>
/// Electron Exception
/// </summary>
[Serializable]
public class ElectronException : Exception
{
/// <summary>
///
/// </summary>
public ElectronException()
{
}
/// <summary>
///
/// </summary>
/// <param name="error"></param>
public ElectronException(string error) : base(error)
{
}
}
}