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