diff mercurial/error.py @ 7636:e3f8c6d6b72e

error: move ParseError
author Matt Mackall <mpm@selenic.com>
date Sun, 11 Jan 2009 23:04:24 -0600
parents 08cabecfa8a8
children 1d54e2f6c0b7
line wrap: on
line diff
--- a/mercurial/error.py	Sun Jan 11 23:00:09 2009 -0600
+++ b/mercurial/error.py	Sun Jan 11 23:04:24 2009 -0600
@@ -24,3 +24,6 @@
 
     def __str__(self):
         return RevlogError.__str__(self)
+
+class ParseError(Exception):
+    """Exception raised on errors in parsing the command line."""