Mercurial > public > mercurial-scm > hg
comparison mercurial/error.py @ 7646:e62a456b8dc5
error: move SignatureError
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Mon, 12 Jan 2009 13:51:43 -0600 |
parents | 182b7114d35a |
children | a454eeb1b827 |
comparison
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 |