public HotKeyUnregistrationFailedException(string message, GlobalHotKey hotKey) : base(message) { HotKey = hotKey; }
public HotKeyRegistrationFailedException(string message, GlobalHotKey hotKey, Exception inner) : base(message, inner) { HotKey = hotKey; }
public HotKeyAlreadyRegisteredException(string message, GlobalHotKey hotKey, Exception inner) : base(message, inner) { HotKey = hotKey; }