diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-05-29 17:43:02 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-29 17:43:02 -0400 |
commit | 8d9405a1fcc2169aa039172a8e2891b839a59e6c (patch) | |
tree | 53d94a01e7421f8ffba8c8df3ef640c16413b008 /cmd2/__init__.py | |
parent | d4653e6fccf0bc15d04075110769c11befb22819 (diff) | |
parent | 9b91116ec523f1bb27ae8c353a2a7a1dc7975888 (diff) | |
download | cmd2-git-8d9405a1fcc2169aa039172a8e2891b839a59e6c.tar.gz |
Merge pull request #937 from python-cmd2/exceptions
Exception handling
Diffstat (limited to 'cmd2/__init__.py')
-rw-r--r-- | cmd2/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd2/__init__.py b/cmd2/__init__.py index eb5c275d..d49427f2 100644 --- a/cmd2/__init__.py +++ b/cmd2/__init__.py @@ -25,6 +25,7 @@ from .argparse_custom import DEFAULT_ARGUMENT_PARSER from .cmd2 import Cmd from .constants import COMMAND_NAME, DEFAULT_SHORTCUTS from .decorators import with_argument_list, with_argparser, with_argparser_and_unknown_args, with_category +from .exceptions import Cmd2ArgparseError, SkipPostcommandHooks from .parsing import Statement from .py_bridge import CommandResult from .utils import categorize, CompletionError, Settable |