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