1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-12 08:48:30 +00:00
CUE.NET/Exceptions/CUEException.cs

27 lines
491 B
C#

// ReSharper disable UnusedAutoPropertyAccessor.Global
// ReSharper disable MemberCanBePrivate.Global
using System;
using CUE.NET.Enums;
namespace CUE.NET.Exceptions
{
public class CUEException : ApplicationException
{
#region Properties & Fields
public CorsairError Error { get; }
#endregion
#region Constructors
public CUEException(CorsairError error)
{
this.Error = error;
}
#endregion
}
}