mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-13 21:24:00 +00:00
29 lines
495 B
C#
29 lines
495 B
C#
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|