using System; namespace Artemis.Core; /// /// Represents errors that occur within the Artemis Core /// public class ArtemisCoreException : Exception { internal ArtemisCoreException(string message) : base(message) { } internal ArtemisCoreException(string message, Exception inner) : base(message, inner) { } }