Пример #1
0
 public HotKeyUnregistrationFailedException(string message, GlobalHotKey hotKey) : base(message)
 {
     HotKey = hotKey;
 }
Пример #2
0
 public HotKeyRegistrationFailedException(string message, GlobalHotKey hotKey, Exception inner) : base(message, inner)
 {
     HotKey = hotKey;
 }
Пример #3
0
 public HotKeyAlreadyRegisteredException(string message, GlobalHotKey hotKey, Exception inner) : base(message, inner)
 {
     HotKey = hotKey;
 }