mercurial/error.py
changeset 7646 e62a456b8dc5
parent 7644 182b7114d35a
child 7947 a454eeb1b827
equal deleted inserted replaced
7645:020a896a5292 7646:e62a456b8dc5
    57     """Exception raised if command shortcut matches more than one command."""
    57     """Exception raised if command shortcut matches more than one command."""
    58 
    58 
    59 # derived from KeyboardInterrupt to simplify some breakout code
    59 # derived from KeyboardInterrupt to simplify some breakout code
    60 class SignalInterrupt(KeyboardInterrupt):
    60 class SignalInterrupt(KeyboardInterrupt):
    61     """Exception raised on SIGTERM and SIGHUP."""
    61     """Exception raised on SIGTERM and SIGHUP."""
       
    62 
       
    63 class SignatureError(Exception):
       
    64     pass