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