mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
17 lines
363 B
C#
17 lines
363 B
C#
using System;
|
|
|
|
namespace Artemis.Core;
|
|
|
|
/// <summary>
|
|
/// Represents errors that occur within the Artemis Core
|
|
/// </summary>
|
|
public class ArtemisCoreException : Exception
|
|
{
|
|
internal ArtemisCoreException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
internal ArtemisCoreException(string message, Exception inner) : base(message, inner)
|
|
{
|
|
}
|
|
} |