summaryrefslogtreecommitdiff
path: root/cmd2/exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'cmd2/exceptions.py')
-rw-r--r--cmd2/exceptions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd2/exceptions.py b/cmd2/exceptions.py
index 1c00794f..1fffed1c 100644
--- a/cmd2/exceptions.py
+++ b/cmd2/exceptions.py
@@ -2,8 +2,8 @@
"""Custom exceptions for cmd2. These are NOT part of the public API and are intended for internal use only."""
-class CmdLineError(Exception):
- """Custom class for when an error occurred parsing the command line"""
+class Cmd2ArgparseException(Exception):
+ """Custom exception class for when an argparse-decorated command has an error parsing its arguments"""
pass