using System;
namespace ElectronNET.API.Entities
{
///
/// Electron Exception
///
[Serializable]
public class ElectronException : Exception
{
///
///
///
public ElectronException()
{
}
///
///
///
///
public ElectronException(string error) : base(error)
{
}
}
}